///
import { NavigationRoute, NavigationParams, NavigationScreenConfig, SupportedThemes } from 'react-navigation';
import { StackNavigationProp, StackNavigationOptions } from './vendor/types';
export declare type NavigationStackScreenProps = {
theme: SupportedThemes;
navigation: StackNavigationProp;
screenProps: ScreenProps;
};
export declare type NavigationStackScreenComponent = React.ComponentType> & {
navigationOptions?: NavigationScreenConfig, ScreenProps>;
};