import { DirectionType } from './meta/types'; import { ThemeVariantType } from "../../type/variant"; /** * @part progress - Selects the `div` element that contains the progress bar */ export declare class MdsProgress { private element; currentStep: string; private stepsList; /** * A value between 0 and 1 that rapresents the status progress */ readonly progress: number; /** * Specifies the direction of the progress bar, if horizonatl or vertical */ readonly direction?: DirectionType; /** * Sets the theme variant colors */ readonly variant: ThemeVariantType; /** * Sets the steps that can be pronounced by accessibility technologies */ readonly steps: string; componentWillLoad(): void; componentDidLoad(): void; private setProgress; progressChanged(progress: number): void; stepsChanged(steps: string): void; render(): any; }