import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Abi } from '../../strk-types/abi.js'; import type { ContractFunctions } from '../../strk-types/parser.js'; import type { Account } from '../../types/account.js'; import type { Chain } from '../../types/chain.js'; import type { WriteContractParameters } from './writeContract.js'; export type WriteContractsParameters = keyof ContractFunctions> = { contracts: WriteContractParameters[]; }; export type WriteContractsReturnTypes = any; export type WriteContractsErrorType = any; export declare function writeContracts = keyof ContractFunctions>(client: Client, parameters: WriteContractsParameters): Promise; //# sourceMappingURL=writeContracts.d.ts.map