import type { CodegenTypes as CT, HostComponent, ImageSource, ProcessedColorValue, ViewProps } from 'react-native'; type GenericEmptyEvent = Readonly<{}>; type TabBarItemLabelVisibilityMode = 'auto' | 'selected' | 'labeled' | 'unlabeled'; export type ItemStateAppearance = { tabBarItemTitleFontColor?: ProcessedColorValue | null | undefined; tabBarItemIconColor?: ProcessedColorValue | null | undefined; }; export type Appearance = { tabBarBackgroundColor?: ProcessedColorValue | null | undefined; tabBarItemRippleColor?: ProcessedColorValue | null | undefined; tabBarItemLabelVisibilityMode?: CT.WithDefault; normal?: ItemStateAppearance | undefined; selected?: ItemStateAppearance | undefined; focused?: ItemStateAppearance | undefined; disabled?: ItemStateAppearance | undefined; tabBarItemActiveIndicatorColor?: ProcessedColorValue | null | undefined; tabBarItemActiveIndicatorEnabled?: CT.WithDefault; tabBarItemTitleFontFamily?: string | undefined; tabBarItemTitleSmallLabelFontSize?: CT.Float | undefined; tabBarItemTitleLargeLabelFontSize?: CT.Float | undefined; tabBarItemTitleFontWeight?: string | undefined; tabBarItemTitleFontStyle?: string | undefined; tabBarItemBadgeBackgroundColor?: ProcessedColorValue | null | undefined; tabBarItemBadgeTextColor?: ProcessedColorValue | null | undefined; }; export interface NativeProps extends ViewProps { onWillAppear?: CT.DirectEventHandler | undefined; onDidAppear?: CT.DirectEventHandler | undefined; onWillDisappear?: CT.DirectEventHandler | undefined; onDidDisappear?: CT.DirectEventHandler | undefined; screenKey: string; preventNativeSelection?: CT.WithDefault; title?: string | undefined | null; badgeValue?: string | undefined; tabBarItemTestID?: string | undefined; tabBarItemAccessibilityLabel?: string | undefined; specialEffects?: { repeatedTabSelection?: { popToRoot?: CT.WithDefault; scrollToTop?: CT.WithDefault; } | undefined; } | undefined; drawableIconResourceName?: string | undefined; imageIconResource?: ImageSource | undefined; selectedDrawableIconResourceName?: string | undefined; selectedImageIconResource?: ImageSource | undefined; standardAppearance?: Appearance | undefined; } declare const _default: HostComponent; export default _default; //# sourceMappingURL=TabsScreenAndroidNativeComponent.d.ts.map