import { ModalStatusType } from "../interfaces";
interface DetailedLoaderProps {
    message?: string;
    appLogo?: string;
    adapterLogo?: string;
    adapter: string;
    adapterName: string;
    modalStatus: ModalStatusType;
    onClose: () => void;
}
export default function DetailedLoader(props: DetailedLoaderProps): import("react/jsx-runtime").JSX.Element;
export {};
