import type { Address, Transport } from 'viem'; import { z } from 'zod'; declare const feeDataSchema: z.ZodObject<{ chainId: z.ZodCoercedNumber; context: z.ZodOptional; expiry: z.ZodNumber; gasPrice: z.ZodCoercedBigInt; rate: z.ZodNumber; token: z.ZodObject<{ address: z.ZodPipe>; decimals: z.ZodNumber; }, z.core.$strip>; }, z.core.$strip>; export type FeeData = z.infer; export type GetFeeDataParameters = { chainId: number; token: Address; }; export declare const getFeeData: (client: ReturnType, parameters: GetFeeDataParameters) => Promise; export {}; //# sourceMappingURL=getFeeData.d.ts.map