interface Props {
    onClose: () => void;
    fromChain?: any;
    toChain?: any;
    status: number;
    hash: string;
}
export default function ComfirmBox({ onClose, status, fromChain, toChain, hash }: Props): import("react/jsx-runtime").JSX.Element;
export {};
