UNPKG

696 BTypeScriptView Raw
1export interface StepperClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `orientation="horizontal"`. */
5 horizontal: string;
6 /** Styles applied to the root element if `orientation="vertical"`. */
7 vertical: string;
8 /** Styles applied to the root element if `nonLinear={true}`. */
9 nonLinear: string;
10 /** Styles applied to the root element if `alternativeLabel={true}`. */
11 alternativeLabel: string;
12}
13export type StepperClassKey = keyof StepperClasses;
14export declare function getStepperUtilityClass(slot: string): string;
15declare const stepperClasses: StepperClasses;
16export default stepperClasses;