import React from 'react'; import { StackProps } from './View/Stack'; import { ViewProps } from './View/types'; export declare type TabsProps = Omit & { height?: number; onChange?: (key: string | void) => void; active?: number | string | void; defaultActive?: string | boolean; children?: any[] | React.ReactNode; sortable?: boolean; onSort?: (order: string[]) => void; order?: string[]; persist?: boolean; newable?: boolean; onNew?: () => void; before?: any[]; after?: any[]; tabProps?: ViewProps; tabPropsActive?: ViewProps; TabComponent?: any; centered?: boolean; sizeRadius?: number; sizePadding?: number; tabWidth?: number | string; scrollable?: boolean; }; export declare function Tabs(props: TabsProps): JSX.Element; //# sourceMappingURL=Tabs.d.ts.map