UNPKG

468 BTypeScriptView Raw
1export interface TabsClasses {
2 /** Class name applied to the root element. */
3 root: string;
4 /** Class name applied to the root element if `orientation='horizontal'`. */
5 horizontal: string;
6 /** Class name applied to the root element if `orientation='vertical'`. */
7 vertical: string;
8}
9export type TabsClassKey = keyof TabsClasses;
10export declare function getTabsUtilityClass(slot: string): string;
11export declare const tabsClasses: TabsClasses;