import type { RelayChain } from '@reservoir0x/relay-sdk';
export type BridgeFee = {
    raw: bigint;
    formatted: string;
    usd: {
        value: number;
        formatted: string;
    };
    name: string;
    tooltip: string | null;
    type: 'gas' | 'relayer';
    currency: RelayChain['currency'];
    id: string;
};
//# sourceMappingURL=BridgeFee.d.ts.map