import React from 'react'; declare type Screens = Record; export declare type PagesWrapperProps = { screens: Screens; LinkingConfiguration: any; initialRouteName: string; tabBar?: any; theme?: any; navigatorProps?: any; getScreenProps?: (page: Screen) => null; }; declare type Screen = { name: string; component: React.Component; options?: any; isStack?: boolean; screens?: Screens; }; export declare const NavigationCreator: (props: PagesWrapperProps) => JSX.Element; export {};