import { Abi } from 'abitype'; import BaseContract, { SafeContractFunction, ContractReadFunctionNames, EstimateGasFunction } from '../common/BaseContract'; /** * Represents the base contract type for a CreateCall contract. * * @template CreateCallContractAbi - The ABI of the CreateCall contract. * @type {CreateCallBaseContract} */ export type CreateCallBaseContract = BaseContract> & { estimateGas: EstimateGasFunction; performCreate: SafeContractFunction; performCreate2: SafeContractFunction; }; export default CreateCallBaseContract; //# sourceMappingURL=CreateCallBaseContract.d.ts.map