import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { BlockTag } from '../../types/block.js'; import type { Chain } from '../../types/chain.js'; import type { Address, Hash, Hex } from '../../types/misc.js'; export type EstimateMessageFeeParameters = { from_address: Address; to_address: Address; entry_point_selector: Hex; payload: Hex[]; block_hash?: Hash; block_number?: number; block_tag?: BlockTag; }; export type EstimateMessageFeeReturnTypes = any; export type EstimateMessageFeeErrorType = any; export declare function estimateMessageFee(client: Client, { from_address, to_address, entry_point_selector, payload, block_hash, block_number, block_tag, }: EstimateMessageFeeParameters): Promise; //# sourceMappingURL=estimateMessageFee.d.ts.map