import type { DefineComponent } from "vue"; /** Progress component props */ export interface ProgressProps { /** default: 0 */ percent?: number; /** default: 6 */ strokeWidth?: number; color?: string; format?: (...args: any[]) => any; width?: number; strokeHeight?: number; /** default: 75 */ gapDegree?: number; strokeColor?: Record; /** default: round */ strokeLinecap?: string; /** default: default */ size?: string; /** default: normal */ status?: string; /** default: line */ type?: string; /** default: true */ showInfo?: boolean; } /** Progress Vue 3 component */ declare const Progress: DefineComponent; export default Progress;