import type { Address, Transport } from 'viem'; import { z } from 'zod'; declare const feeQuote: z.ZodObject<{ chainId: z.ZodCoercedNumber; context: z.ZodOptional; expiry: z.ZodNumber; fee: z.ZodCoercedBigInt; token: z.ZodObject<{ address: z.ZodPipe>; decimals: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; export type FeeQuote = z.infer; export type GetFeeQuoteParameters = { chainId: number; gas: bigint; l1Fee?: bigint; token: Address; }; export declare const getFeeQuote: (client: ReturnType, parameters: GetFeeQuoteParameters) => Promise; export {}; //# sourceMappingURL=getFeeQuote.d.ts.map