UNPKG

1.01 kBTypeScriptView Raw
1export interface MobileStepperClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `position="bottom"`. */
5 positionBottom: string;
6 /** Styles applied to the root element if `position="top"`. */
7 positionTop: string;
8 /** Styles applied to the root element if `position="static"`. */
9 positionStatic: string;
10 /** Styles applied to the dots container if `variant="dots"`. */
11 dots: string;
12 /** Styles applied to each dot if `variant="dots"`. */
13 dot: string;
14 /** Styles applied to a dot if `variant="dots"` and this is the active step. */
15 dotActive: string;
16 /** Styles applied to the Linear Progress component if `variant="progress"`. */
17 progress: string;
18}
19export type MobileStepperClassKey = keyof MobileStepperClasses;
20export declare function getMobileStepperUtilityClass(slot: string): string;
21declare const mobileStepperClasses: MobileStepperClasses;
22export default mobileStepperClasses;