/// <reference types="node" />
export type UiLoadingShowOption = {
    icon?: string;
    delay?: number;
    message?: string;
};
export type UiLoadingHandles = {
    timer?: NodeJS.Timeout;
    delay: boolean;
    open: (config?: UiLoadingShowOption) => void;
    close: () => void;
};
declare const $loading: UiLoadingHandles;
export { $loading };
export default $loading;
