export interface TabsRootClasses { /** Class name applied to the root element. */ root: 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; } export type TabsClassKey = keyof TabsRootClasses; export declare function getTabsRootUtilityClass(slot: string): string; declare const tabsRootClasses: TabsRootClasses; export default tabsRootClasses;