import { ExcludedProps, VariantProps } from "@vitality-ds/system"; import { BaseLinearProgressIndicator } from "./styled"; export declare type LinearProgressProps = ExcludedProps & VariantProps & { /** * A numerical value between 0 and 100 to indicate the percent completed of a progress */ value?: number; };