import { VNode } from 'vue'; import type { LoadingProps } from './typing'; export declare function createLoading(props?: Partial, target?: HTMLElement, wait?: boolean): { vm: VNode; close: () => void; open: (target?: HTMLElement) => void; setTip: (tip: string) => void; setLoading: (loading: boolean) => void; readonly loading: boolean; readonly $el: HTMLElement; };