import { BigNumber, BigNumberish } from 'ethers'; export interface Chains { chains?: { name: string; chain: number; short: number; gas: string; gwei: string; bal: string; rpcs: string[]; symbol: string; price: number; }[]; } export declare type GasZipQuote = { amountOut: BigNumber; speed: number; usd: number; }; export declare const getGasZipTxStatus: (txHash: string) => Promise; export declare const getChains: () => Promise; export declare const getGasZipBlockHeightMap: () => Promise>; export declare const getGasZipQuote: (originChainId: number, destChainId: number, amount: BigNumberish) => Promise;