import { Ref } from 'vue';
import { LoadingPropsT } from './types';
declare const useLoading: (opt?: Partial<LoadingPropsT>, wrap?: Ref<HTMLElement | undefined> | HTMLElement | string) => {
    toggle(show?: boolean): void;
};
export default useLoading;
