/// <reference types="node" />
import React, { CSSProperties } from "react";
import "./style.scss";
interface loadinParams {
    target?: string;
    text?: string;
    background?: string;
    icon?: string;
    duration?: number;
    style?: CSSProperties;
}
declare const Loading: {
    EL: string;
    childrenRef: React.RefObject<unknown>;
    showTimer: NodeJS.Timeout | null;
    closeTimer: NodeJS.Timeout | null;
    show: (p?: loadinParams) => void;
    close: () => void;
};
export default Loading;
