import { Color } from '../types/colors';
export interface FProgressBarProps {
    /**
     * The progress bar value in percentage
     */
    value?: number;
    /**
     * The color of the progress bar
     */
    color?: Color;
    /**
     * The height of the progress bar
     */
    height?: string | number;
}
declare const _default: import('vue').DefineComponent<FProgressBarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FProgressBarProps> & Readonly<{}>, {
    value: number;
    color: Color;
    height: string | number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;
