import { type PropType, type StyleValue } from 'vue'; export interface ProgressBarProps { rootStyle?: StyleValue; rootClass?: string; percent?: number; inside?: boolean; color?: string; trackColor?: string; thickness?: string; showText?: boolean; striped?: boolean; animated?: boolean; status?: 'success' | 'warning' | 'error'; } export declare const progressBarProps: { rootStyle: PropType; rootClass: StringConstructor; percent: { type: NumberConstructor; default: number; }; inside: BooleanConstructor; color: StringConstructor; trackColor: StringConstructor; thickness: StringConstructor; showText: { type: BooleanConstructor; default: boolean; }; striped: BooleanConstructor; animated: BooleanConstructor; status: PropType<"success" | "error" | "warning" | undefined>; }; export interface ProgressBarSlots { default(props: Record): any; }