UNPKG

@pushchain/ui-kit

Version:
9 lines (8 loc) 357 B
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 };