import { Scale } from '../../variations';
export declare const TAB_SCALES: readonly ["xs", "sm", "md", "lg"];
export type TabScale = Extract<Scale, (typeof TAB_SCALES)[number]>;
export type TabsProperties = {
    /**
     * Scale of the tab item.
     */
    scale?: TabScale;
};
export type TabProperties = {
    /**
     * Tab id
     */
    id: string;
    /**
     * Tab label
     */
    label?: string;
};
