import { type Address, type Call } from 'viem'; import type { SmartAccount } from 'viem/account-abstraction'; import type { FeeQuote, GelatoEvmRelayerClient } from '../../relayer/index.js'; import type { GelatoSmartAccountImplementation } from '../adapters/types/index.js'; export type GetFeeQuoteParameters = { token?: Address; calls: Call[]; }; export declare const getFeeQuote: (client: GelatoEvmRelayerClient, account: SmartAccount, parameters: GetFeeQuoteParameters) => Promise; //# sourceMappingURL=getFeeQuote.d.ts.map