import { LoadingProps } from './types'; export declare function setLoadingDefault(ops: Partial): void; export declare function useInternalLoading(initOps?: Partial): { show: (ops?: Partial) => void; hide: () => void; };