export interface StepperTheme {
    /** CSS class applied to the root stepper container. */
    base: string;
    /** Class names applied to each step. */
    step: {
        base: string;
        marker: {
            container: string;
            base: string;
            active: string;
            label: {
                base: string;
                active: string;
            };
        };
        active: string;
        content: string;
    };
}
export declare const stepperTheme: StepperTheme;
