interface Props { /** * Will randomly increment but never actually reach the end */ fake?: boolean; /** * Indicator color. Use CSS color values or variables */ color?: string; /** * Displays loader at the top of the page. It is only displayed when the * progress is between 0 and 100 (exclusive). */ fixed?: boolean; /** * Height */ height?: number | string; } type __VLS_Props = Props; type __VLS_ModelProps = { modelValue?: number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { done: () => any; "update:modelValue": (value: number) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onDone?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: number) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;