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
		
	
	
		
			580 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			14 lines
		
	
	
		
			580 B
		
	
	
	
		
			TypeScript
		
	
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;
 |