import React from 'react'; export interface TabProps extends React.ComponentProps<'button'> { /** Tab control label */ label?: React.ReactNode; /** Tab's key */ key?: string; /** Icon on the left side of label */ icon?: React.ReactNode; /** Tab content */ children?: React.ReactNode; /** Get tab control ref */ elementRef?: React.ForwardedRef; } export interface TabType { type: any; key: string; props: TabProps; } export declare function Tab(props: TabProps): any; export declare namespace Tab { var displayName: string; } //# sourceMappingURL=Tab.d.ts.map