/**
 * @typedef {import('ipfsd-ctl').Factory} Factory
 */
/**
 * @param {Factory} factory
 * @param {object} options
 */
export function testRefs(factory: Factory, options: object): void;
export type Factory = import('ipfsd-ctl').Factory;
export type Store = {
    putData: (data: Uint8Array) => Promise<CID>;
    putLinks: (links: {
        name: string;
        cid: string;
    }[]) => Promise<CID>;
};
//# sourceMappingURL=refs.d.ts.map