import { CSSProperties } from 'vue'; export interface Props { containerClass?: string; containerStyle?: CSSProperties; loadingBarSize?: number; colorLoading?: string; colorFinish?: string; colorError?: string; to?: string | HTMLElement | false; } declare function start(from?: number, to?: number, status?: 'starting' | 'error'): Promise; declare function finish(): Promise; declare function error(): void; declare const _default: import('vue').DefineComponent & Readonly<{}>, { to: string | HTMLElement | false; containerClass: string; containerStyle: CSSProperties; loadingBarSize: number; colorLoading: string; colorFinish: string; colorError: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { loadingBarRef: HTMLDivElement; }, any>; export default _default;