import { BatchId, Bee } from '@ethersphere/bee-js'; import { ReactElement, ReactNode } from 'react'; interface Props { type: 'Topup' | 'Dilute'; icon: ReactNode; bee: Bee; stamp: BatchId; } export default function StampExtensionModal({ type, icon, bee, stamp }: Props): ReactElement; export {};