ohctechv3/.svn/pristine/53/53ddde934815fbdd30e763a0dc6af2fae5bec9b1.svn-base

14 lines
580 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
export interface OptionClasses {
/** Class name applied to the root element. */
root: string;
/** State class applied to the root `li` element if `disabled={true}`. */
disabled: string;
/** State class applied to the root `li` element if `selected={true}`. */
selected: string;
/** State class applied to the root `li` element if `highlighted={true}`. */
highlighted: string;
}
export type OptionClassKey = keyof OptionClasses;
export declare function getOptionUtilityClass(slot: string): string;
export declare const optionClasses: OptionClasses;