/// <reference types="react" />
import './tab.scss';
/**
 * Use `<Tab>` to wrap it
 *
 * It's style depends on whether you provide `icon`
 */
export declare const Tab: import("react").ForwardRefExoticComponent<{
    value: string;
    children?: React.ReactNode;
    icon?: React.ReactNode;
    active?: boolean | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "value" | "children" | "icon" | "active"> & import("react").RefAttributes<HTMLElement>>;
