export interface TabClasses { /** * Class name applied to the root element. */ root: string; /** * Class name applied to the root element if `disabled={true}`. */ disabled: string; /** * Class name applied to the root element when it is selected */ selected: string; /** * Class name applied to the root element if `orientation="horizontal"`. */ horizontal: string; /** * Class name applied to the root element if `orientation="vertical"`. */ vertical: string; /** * Class name applied when `iconPosition="side"`. */ iconPositionSide: string; /** * Class name applied when `iconPosition="top"`. */ iconPositionTop: string; } export type TabClassKey = keyof TabClasses; export declare function getTabUtilityClass(slot: string): string; declare const tabClasses: TabClasses; export default tabClasses;