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