import { type ApolloLink } from '@apollo/client/core';
import { type AccountsClient } from '@accounts/client';
type AccountsClientFactory = () => AccountsClient | Promise<AccountsClient>;
export declare const accountsLink: (accountsClientFactory: AccountsClientFactory) => ApolloLink;
export {};
