import { IAttestorClient, IAttestorClientCreateOpts } from '../../types';
/**
 * Get a attestor client from the pool,
 * if it doesn't exist, create one.
 */
export declare function getAttestorClientFromPool(url: string | URL, getCreateOpts?: () => Omit<IAttestorClientCreateOpts, 'url'>): IAttestorClient;
