import { Abi } from 'abitype'; import BaseContract, { EstimateGasFunction } from '../common/BaseContract'; /** * Represents the base contract type for a Safe WebAuthn Shared Signer contract. * * @template SafeWebAuthnSharedSignerContractAbi - The ABI of the Safe WebAuthn Shared Signer contract. * @type {SafeWebAuthnSahredSignerBaseContract} */ export type SafeWebAuthnSharedSignerBaseContract = BaseContract & { estimateGas: EstimateGasFunction; }; export default SafeWebAuthnSharedSignerBaseContract; //# sourceMappingURL=SafeWebAuthnSharedSignerBaseContract.d.ts.map