import React, { FC } from 'react';
import { ProgressEvent } from '@pushchain/core/src/lib/progress-hook/progress-hook.types';
type PushWalletToastProps = {
    progress: ProgressEvent | null;
    setProgress: React.Dispatch<React.SetStateAction<ProgressEvent | null>>;
};
declare const PushWalletToast: FC<PushWalletToastProps>;
export { PushWalletToast };
