import React from 'react'; import { ViewStyle } from 'react-native'; import { DynamicIconProps } from './DynamicIcon'; export interface TabProps { /** If true, the tab will be disabled. */ disabled?: boolean; /** If true, the tab will be active. */ selected?: boolean; /** Dynamic Icon Props */ icon?: DynamicIconProps; /** The label element */ label?: React.ReactNode; /** Tab value */ value?: string; style?: ViewStyle; styles?: any; } export declare const TabDefaultProps: { disabled: boolean; }; /** * # 🗂 Tab * A single tab component. */ export declare const Tab: React.ComponentType;