export declare const useLoading: (initial?: boolean) => { isLoading: import("vue").Ref; startLoading: () => void; stopLoading: () => void; startAsyncCall: (cb: () => Promise) => Promise; startAsyncCallFn: (cb: () => Promise) => () => Promise; startAsyncCallWithErr: (cb: () => Promise) => Promise; };