/// <reference types="react" />
import { ViewProps, ViewStyle } from 'react-native';
export interface TabsProps extends ViewProps {
    /** 子元素 */
    children?: JSX.Element | Array<JSX.Element>;
    /** 容器样式 */
    style?: ViewStyle;
}
declare function Tabs(props: TabsProps): JSX.Element | null;
declare namespace Tabs {
    var Item: typeof import("./TabsItem").default;
}
export default Tabs;
