You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
468 B
TypeScript

export interface TabsClasses {
/** 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 TabsClasses;
export declare function getTabsUtilityClass(slot: string): string;
export declare const tabsClasses: TabsClasses;