import type { Icon } from "../../../components/elements/icon/Icon";
export interface Tab {
    style?: object;
    title?: string;
    active?: boolean;
    disabled?: any;
    iconLeft?: Icon | string;
    iconRight?: Icon | string;
    children?: any;
    onClick?: Function;
    onBlur?: Function;
    scale?: number;
    toggle?: boolean;
    fit?: boolean;
    show?: "desktop" | "laptop" | "tablet" | "mobile";
    hide?: "desktop" | "laptop" | "tablet" | "mobile";
}
export default function Tab(props: Tab): import("react").JSX.Element;
//# sourceMappingURL=Tab.d.ts.map