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.

14 lines
544 B
TypeScript

export interface OptionGroupClasses {
/** Class name applied to the root element. */
root: string;
/** State class applied to the root `li` element if `disabled={true}`. */
disabled: string;
/** Class name applied to the label element. */
label: string;
/** Class name applied to the list element. */
list: string;
}
export type OptionGroupClassKey = keyof OptionGroupClasses;
export declare function getOptionGroupUtilityClass(slot: string): string;
export declare const optionGroupClasses: OptionGroupClasses;