import { type App } from 'vue'; import type { LoadingProps } from './types'; export declare const createLoading: () => { (_ops?: Partial): { show(options: Partial): void; hide(): void; }; install(app: App): void; }; export declare const createGlobalLoading: () => { (_ops?: Partial): { show(options: Partial): void; hide(): void; }; install(app: App): void; };