import type { CodegenTypes as CT, HostComponent, ViewProps, ColorValue } from 'react-native'; type DirectionType = 'rtl' | 'ltr'; type OnAttachedEvent = Readonly<{}>; type OnDetachedEvent = Readonly<{}>; type OnPressHeaderBarButtonItemEvent = Readonly<{ buttonId: string; }>; type OnPressHeaderBarButtonMenuItemEvent = Readonly<{ menuId: string; }>; type BackButtonDisplayMode = 'minimal' | 'default' | 'generic'; type BlurEffect = 'none' | 'extraLight' | 'light' | 'dark' | 'regular' | 'prominent' | 'systemUltraThinMaterial' | 'systemThinMaterial' | 'systemMaterial' | 'systemThickMaterial' | 'systemChromeMaterial' | 'systemUltraThinMaterialLight' | 'systemThinMaterialLight' | 'systemMaterialLight' | 'systemThickMaterialLight' | 'systemChromeMaterialLight' | 'systemUltraThinMaterialDark' | 'systemThinMaterialDark' | 'systemMaterialDark' | 'systemThickMaterialDark' | 'systemChromeMaterialDark'; type UserInterfaceStyle = 'unspecified' | 'light' | 'dark'; export interface NativeProps extends ViewProps { onAttached?: CT.DirectEventHandler | undefined; onDetached?: CT.DirectEventHandler | undefined; backgroundColor?: ColorValue | undefined; backTitle?: string | undefined; backTitleFontFamily?: string | undefined; backTitleFontSize?: CT.Int32 | undefined; backTitleVisible?: CT.WithDefault; color?: ColorValue | undefined; direction?: CT.WithDefault; hidden?: boolean | undefined; hideShadow?: boolean | undefined; largeTitle?: boolean | undefined; largeTitleFontFamily?: string | undefined; largeTitleFontSize?: CT.Int32 | undefined; largeTitleFontWeight?: string | undefined; largeTitleBackgroundColor?: ColorValue | undefined; largeTitleHideShadow?: boolean | undefined; largeTitleColor?: ColorValue | undefined; translucent?: boolean | undefined; title?: string | undefined; titleFontFamily?: string | undefined; titleFontSize?: CT.Int32 | undefined; titleFontWeight?: string | undefined; titleColor?: ColorValue | undefined; disableBackButtonMenu?: boolean | undefined; backButtonDisplayMode?: CT.WithDefault; hideBackButton?: boolean | undefined; backButtonInCustomView?: boolean | undefined; blurEffect?: CT.WithDefault; topInsetEnabled?: boolean | undefined; headerLeftBarButtonItems?: CT.UnsafeMixed[] | undefined; headerRightBarButtonItems?: CT.UnsafeMixed[] | undefined; onPressHeaderBarButtonItem?: CT.DirectEventHandler | undefined; onPressHeaderBarButtonMenuItem?: CT.DirectEventHandler | undefined; synchronousShadowStateUpdatesEnabled?: CT.WithDefault; userInterfaceStyle?: CT.WithDefault; consumeTopInset?: CT.WithDefault; consumeLeftInset?: CT.WithDefault; consumeRightInset?: CT.WithDefault; consumeBottomInset?: CT.WithDefault; legacyTopInsetBehavior?: boolean | undefined; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=ScreenStackHeaderConfigNativeComponent.d.ts.map