import { SoulboundIdentity, SoulboundCreditReport, SoulName, SoulLinker, SoulStore } from '@masa-finance/masa-contracts-identity'; import * as goerli from './goerli'; export declare const addresses: { goerli: typeof goerli; }; export interface IIdentityContracts { SoulboundIdentityContract: SoulboundIdentity; SoulboundCreditReportContract: SoulboundCreditReport; SoulNameContract: SoulName; SoulLinkerContract: SoulLinker; SoulStoreContract: SoulStore; } interface LoadContractArgs { provider?: any; network?: string; } export declare const loadContracts: ({ provider, network, }: LoadContractArgs) => Promise; export declare const useContractCall: ({ method }: { method: Promise; }) => { data: any; error: any; loading: boolean; getData: () => any; }; export {};