import { LinkingOptions, ParamListBase, PartialRoute, Route } from '@react-navigation/native'; import type { ExpoTabActionType } from './TabRouter'; import { UrlObject } from '../LocationProvider'; import { RouteNode } from '../Route'; import { Href } from '../types'; import { Slot } from './Slot'; export declare const ViewSlot: Slot>; export type ScreenTrigger = { type: 'internal'; href: Href; name: string; } | { type: 'external'; name: string; href: string; }; type JumpToNavigationAction = Extract; type TriggerConfig = { type: 'internal'; name: string; href: string; routeNode: RouteNode; action: JumpToNavigationAction; } | { type: 'external'; name: string; href: string; }; export type TriggerMap = Record; export declare function triggersToScreens(triggers: ScreenTrigger[], layoutRouteNode: RouteNode, linking: LinkingOptions, initialRouteName: undefined | string, parentTriggerMap: TriggerMap, routeInfo: UrlObject, contextKey: string): { children: import("react").JSX.Element[]; triggerMap: TriggerMap; }; export declare function stateToAction(state: PartialRoute> | undefined, startAtRoute?: string): JumpToNavigationAction; export {}; //# sourceMappingURL=common.d.ts.map