import { ModalStatusType } from "../interfaces";
interface LoaderProps {
    message?: string;
    modalStatus: ModalStatusType;
    label?: string;
    onClose?: () => void;
    canEmit?: boolean;
}
export default function Loader(props: LoaderProps): import("react/jsx-runtime").JSX.Element;
export {};
