import React from 'react'; import { ViewStyle } from 'react-native'; export interface BottomNavigationProps { /** If true, all BottomNavigationActions will show their labels */ showLabels?: boolean; /** The content of the component. */ children: React.ReactNode; /** Callback fired when the value changes. */ onChange?: (event: object, value: number) => void; /** * The value of the currently selected Tab. If you don't want any selected * Tab, you can set this property to false. */ value?: any; style?: ViewStyle; } export declare const BottomNavigationDefaultProps: { showLabels: boolean; }; /** * # 🗂 BottomNavigation * A simple view that renders tabs. * * ## Usage * * ```jsx ``` */ export declare const BottomNavigation: React.ComponentType;