import type { ExtractPropTypes } from 'vue'; import type Progress from './progress.vue'; export declare type ProgressColor = { color: string; percentage: number; }; export declare type ProgressFn = (percentage: number) => string; export declare const progressProps: { readonly type: import("@element-plus-next/vue-utils").EpPropFinalized; readonly percentage: import("@element-plus-next/vue-utils").EpPropFinalized; readonly status: import("@element-plus-next/vue-utils").EpPropFinalized; readonly indeterminate: import("@element-plus-next/vue-utils").EpPropFinalized; readonly duration: import("@element-plus-next/vue-utils").EpPropFinalized; readonly strokeWidth: import("@element-plus-next/vue-utils").EpPropFinalized; readonly strokeLinecap: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square") | ((new (...args: any[]) => ("inherit" | "round" | "butt" | "square") & {}) | (() => "inherit" | "round" | "butt" | "square"))[], unknown, unknown, "round", boolean>; readonly textInside: import("@element-plus-next/vue-utils").EpPropFinalized; readonly width: import("@element-plus-next/vue-utils").EpPropFinalized; readonly showText: import("@element-plus-next/vue-utils").EpPropFinalized; readonly color: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => (string | ProgressFn | ProgressColor[]) & {}) | (() => string | ProgressFn | ProgressColor[]) | ((new (...args: any[]) => (string | ProgressFn | ProgressColor[]) & {}) | (() => string | ProgressFn | ProgressColor[]))[], unknown, unknown, "", boolean>; readonly format: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => ProgressFn) | (() => ProgressFn) | { (): ProgressFn; new (): any; readonly prototype: any; } | ((new (...args: any[]) => ProgressFn) | (() => ProgressFn) | { (): ProgressFn; new (): any; readonly prototype: any; })[], unknown, unknown, (percentage: number) => string, boolean>; }; export declare type ProgressProps = ExtractPropTypes; export declare type ProgressInstance = InstanceType;