import { CLColors, CLSizes } from '../../../index.ts'; export interface CLProgressProps { /** The color of the progress bar */ color?: CLColors; /** Set to true to invert the direction of the progress bar */ inverted?: boolean; /** When set to `false` it will not render with rounded corners */ rounded?: boolean; /** The size of the progress bar */ size?: CLSizes; /** Set the value to true to display the current progress value above the bar */ status?: boolean; /** Test ID for testing purposes */ testId?: string; } declare const _default: import('vue').DefineComponent<{ modelValue?: number; } & CLProgressProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: number) => any; }, string, import('vue').PublicProps, Readonly<{ modelValue?: number; } & CLProgressProps> & Readonly<{ "onUpdate:modelValue"?: ((value: number) => any) | undefined; }>, { size: CLSizes; color: CLColors; rounded: boolean; testId: string; status: boolean; inverted: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default;