| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | import { ProgressProps } from './Progress';export declare const Progress: import("../utils").WithInstall<import("vue").DefineComponent<{    color: StringConstructor;    inactive: BooleanConstructor;    pivotText: StringConstructor;    textColor: StringConstructor;    showPivot: {        type: BooleanConstructor;        default: true;    };    pivotColor: StringConstructor;    trackColor: StringConstructor;    strokeWidth: (NumberConstructor | StringConstructor)[];    percentage: {        type: (NumberConstructor | StringConstructor)[];        default: number;        validator: (value: import("../utils").Numeric) => boolean;    };}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{    color: StringConstructor;    inactive: BooleanConstructor;    pivotText: StringConstructor;    textColor: StringConstructor;    showPivot: {        type: BooleanConstructor;        default: true;    };    pivotColor: StringConstructor;    trackColor: StringConstructor;    strokeWidth: (NumberConstructor | StringConstructor)[];    percentage: {        type: (NumberConstructor | StringConstructor)[];        default: number;        validator: (value: import("../utils").Numeric) => boolean;    };}>>, {    inactive: boolean;    showPivot: boolean;    percentage: string | number;}>>;export default Progress;export type { ProgressProps };export type { ProgressInstance } from './types';declare module 'vue' {    interface GlobalComponents {        VanProgress: typeof Progress;    }}
 |