import { TxType } from "./sdk/sdk"; export type SupportedTx = Extract; export type TxLabel = "Bond" | "Unbond" | "Transfer" | "IBC Transfer" | "Add to Eth Bridge Pool" | "Withdraw" | "RevealPK" | "Vote Proposal" | "Claim Rewards" | "Redelegate" | "Batch" | "Shielded Swap"; export declare const TxTypeLabel: Record; type TransferToEthereumKind = "Erc20" | "Nut"; export type TransferToEthereum = { kind: TransferToEthereumKind; asset: string; recipient: string; sender: string; amount: string; }; export {};