import React, { FunctionComponent } from 'react'; import { ButtonProps } from './buttons/Button'; import { StackProps } from './View/Stack'; export declare type TabProps = Omit & { id?: string; label?: any; closable?: boolean; hidden?: boolean; persist?: boolean; onClose?: () => void; children?: React.ReactNode | FunctionComponent; icon?: React.ReactNode; }; export declare function Tab(_: TabProps): any; export declare function TabItem(props: ButtonProps): JSX.Element; //# sourceMappingURL=Tab.d.ts.map