UNPKG

react-native-screens

Version:
23 lines 980 B
import type { CodegenTypes as CT, ViewProps } from 'react-native'; export type MenuItemPressEvent = Readonly<{ menuItemId: string; }>; export type MenuSelectionChangeEvent = Readonly<{ menuId: string; selectedMenuItemIds: string[]; }>; export interface NativeProps extends ViewProps { title?: string | undefined; subtitle?: string | undefined; hidden?: CT.WithDefault<boolean, false>; transparent?: CT.WithDefault<boolean, false>; backButtonHidden?: CT.WithDefault<boolean, false>; largeTitle?: string | undefined; largeSubtitle?: string | undefined; largeTitleEnabled?: CT.WithDefault<boolean, false>; onMenuItemPress?: CT.DirectEventHandler<MenuItemPressEvent> | undefined; onMenuSelectionChange?: CT.DirectEventHandler<MenuSelectionChangeEvent> | undefined; } declare const _default: import("react-native").HostComponent<NativeProps>; export default _default; //# sourceMappingURL=StackHeaderConfigIOSNativeComponent.d.ts.map