/** * The supported types of alignments for the tabs. */ export type TabsAlignment = "left" | "center" | "right"; /** * @since 6.0.0 */ export interface TabListClassNameOptions { className?: string; /** @defaultValue `"left"` */ align?: TabsAlignment; /** @defaultValue `false` */ animate?: boolean; /** @defaultValue `false` */ inline?: boolean; /** @defaultValue `false` */ padded?: boolean; /** @defaultValue `false` */ vertical?: boolean; /** @defaultValue `false` */ scrollbar?: boolean; /** @defaultValue `false` */ indicator?: boolean; /** @defaultValue `false` */ fullWidthTabs?: boolean; } /** * @since 6.0.0 */ export declare function tabList(options?: TabListClassNameOptions): string;