import { DappAddressConsumer, DappWhitelistAddressConsumer, IExecConsumer, SubgraphConsumer } from './internalTypes.js';
import { Contact, FetchMyContactsParams } from './types.js';
export type FetchMyContacts = typeof fetchMyContacts;
export declare const fetchMyContacts: ({ graphQLClient, iexec, dappAddress, dappWhitelistAddress, isUserStrict, bulkOnly, }: IExecConsumer & SubgraphConsumer & DappAddressConsumer & DappWhitelistAddressConsumer & FetchMyContactsParams) => Promise<Contact[]>;
