import { 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 defaultProgressBarProps: {
    percent: number;
    showText: boolean;
};
export interface ProgressBarSlots {
    default?(props: Record<string, never>): any;
}
