/// interface LoadingToastProps { isLoading: boolean; label: string; top?: string | number; left?: string | number; } export declare function LoadingToast({ isLoading, label, top, left, }: LoadingToastProps): JSX.Element; export {};