import { ReactNode } from 'react'; import { ButtonStatusType } from '../Button'; interface SignTxPageProps { title?: string; TxInfo: { network: string | ReactNode; from: string | ReactNode; to?: string | ReactNode; amount?: string | ReactNode; networkFee?: string | ReactNode; description?: string | ReactNode; rawData?: string | ReactNode; }; TxFields?: { network?: string | ReactNode; from?: string | ReactNode; to?: string | ReactNode; amount?: string | ReactNode; networkFee?: string | ReactNode; description?: string | ReactNode; rawData?: string | ReactNode; }; AmountNetworkFeeSlot?: ReactNode; onConfirm: () => unknown; onReject: () => unknown; confirmBtnStatus?: ButtonStatusType; confirmDisabled?: boolean; } export default function SignTransaction(props: SignTxPageProps): import("react/jsx-runtime").JSX.Element; export {};