/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "@stencil/core/internal"; import { DirectionType } from "./components/mds-progress/meta/types"; import { ThemeVariantType } from "./type/variant"; export { DirectionType } from "./components/mds-progress/meta/types"; export { ThemeVariantType } from "./type/variant"; export namespace Components { interface MdsProgress { /** * Specifies the direction of the progress bar, if horizonatl or vertical */ "direction"?: DirectionType; /** * A value between 0 and 1 that rapresents the status progress */ "progress": number; /** * Sets the steps that can be pronounced by accessibility technologies */ "steps": string; /** * Sets the theme variant colors */ "variant": ThemeVariantType; } } declare global { interface HTMLMdsProgressElement extends Components.MdsProgress, HTMLStencilElement { } var HTMLMdsProgressElement: { prototype: HTMLMdsProgressElement; new (): HTMLMdsProgressElement; }; interface HTMLElementTagNameMap { "mds-progress": HTMLMdsProgressElement; } } declare namespace LocalJSX { interface MdsProgress { /** * Specifies the direction of the progress bar, if horizonatl or vertical */ "direction"?: DirectionType; /** * A value between 0 and 1 that rapresents the status progress */ "progress"?: number; /** * Sets the steps that can be pronounced by accessibility technologies */ "steps"?: string; /** * Sets the theme variant colors */ "variant"?: ThemeVariantType; } interface IntrinsicElements { "mds-progress": MdsProgress; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "mds-progress": LocalJSX.MdsProgress & JSXBase.HTMLAttributes; } } }