import React from 'react';
import type { CheckoutHistoryItem } from '@funkit/api-base';
import type { Address } from 'viem';
import { type CheckoutStatus } from '../../../domains/checkout';
export type NotificationStatus = CheckoutStatus | 'delayed';
interface CheckoutNotificationProps {
    checkout: CheckoutHistoryItem;
    onClose: (id: string) => void;
    onHelp: (depositAddress: Address) => void;
}
export declare const CheckoutNotification: ({ checkout: defaultCheckout, onClose, onHelp, }: CheckoutNotificationProps) => React.JSX.Element | null;
export {};
