12 lines
517 B
TypeScript
12 lines
517 B
TypeScript
export interface PickersArrowSwitcherClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the spacer element. */
|
|
spacer: string;
|
|
/** Styles applied to the button element. */
|
|
button: string;
|
|
}
|
|
export declare type PickersArrowSwitcherClassKey = keyof PickersArrowSwitcherClasses;
|
|
export declare function getPickersArrowSwitcherUtilityClass(slot: string): string;
|
|
export declare const pickersArrowSwitcherClasses: Record<"root" | "button" | "spacer", string>;
|