import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import type { Theme, AnyValue } from '../../types'; type TabsProps = { children?: React.ReactNode; onChange?: (value: AnyValue) => void; stretch?: boolean; style?: StyleProp; theme: Theme; value: AnyValue; }; type TabBodyProps = { children?: React.ReactNode; style?: StyleProp; theme: Theme; }; type TabProps = { children?: React.ReactNode; onPress?: (value: AnyValue) => void; selected?: boolean; stretch?: boolean; style?: StyleProp; theme: Theme; value: AnyValue; }; declare const _default: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & { ({ children, onChange, stretch, style, theme, value, ...rest }: TabsProps): React.JSX.Element; Tab: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ children, onPress, selected, stretch, style, theme, value, ...rest }: TabProps) => React.JSX.Element), {}>; Body: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ children, style, ...rest }: TabBodyProps) => React.JSX.Element), {}>; }, {}>; export default _default; //# sourceMappingURL=Tabs.d.ts.map