import { CommonNavigationAction, ParamListBase, Router, TabActionType as RNTabActionType, TabNavigationState, TabRouterOptions as RNTabRouterOptions } from '@react-navigation/native'; import { TriggerMap } from './common'; export type ExpoTabRouterOptions = RNTabRouterOptions & { triggerMap: TriggerMap; }; export type ExpoTabsResetValue = 'always' | 'onFocus' | 'never'; export type ExpoTabActionType = RNTabActionType | CommonNavigationAction | { type: 'JUMP_TO'; source?: string; target?: string; payload: { name: string; reset?: ExpoTabsResetValue; params?: object; }; }; export declare function ExpoTabRouter({ triggerMap, ...options }: ExpoTabRouterOptions): Router, { type: "GO_BACK"; source?: string; target?: string; } | { type: "NAVIGATE"; payload: { name: string; params?: object; path?: string; merge?: boolean; pop?: boolean; }; source?: string; target?: string; } | { type: "NAVIGATE_DEPRECATED"; payload: { name: string; params?: object; merge?: boolean; }; source?: string; target?: string; } | { type: "RESET"; payload: (Readonly<{ key: string; index: number; routeNames: string[]; history?: unknown[]; routes: import("@react-navigation/native").NavigationRoute[]; type: string; stale: false; }> | import("@react-navigation/native").PartialState[]; type: string; stale: false; }>> | (Omit[]; type: string; stale: false; }>, "routes"> & { routes: Omit, "key">[]; })) | undefined; source?: string; target?: string; } | { type: "SET_PARAMS"; payload: { params?: object; }; source?: string; target?: string; } | { type: "REPLACE_PARAMS"; payload: { params?: object; }; source?: string; target?: string; } | { type: "PRELOAD"; payload: { name: string; params?: object; }; source?: string; target?: string; } | RNTabActionType | { type: "JUMP_TO"; source?: string; target?: string; payload: { name: string; reset?: ExpoTabsResetValue; params?: object; }; }>; //# sourceMappingURL=TabRouter.d.ts.map