import { MULTICHAIN_STATUS_MAPPING } from "../constants/multichain-status-mapping"; interface Info { bind: string; confirmations: string; formatfee: number; formatswapvalue: number; formatvalue: number; from: string; fromChainID: string; historyType: string; label: string; pairid: string; status: keyof typeof MULTICHAIN_STATUS_MAPPING; statusmsg: string; swapinfo: unknown; swaptx: string; time: number; timestamp: number; toChainID: string; txid: string; } export interface MultichainStatusApiResponse { info: Partial> & Required>; msg: string; } export {};