import type { Link } from '../link.js'; export * from './axiosLink.js'; export * from './corsLink.js'; export * from './oauthLink.js'; export * from './openIntProxyLink.js'; export * from './authLink.js'; export declare function echoLink(): Link; export declare function fetchLink({ fetch, }?: { fetch?: typeof globalThis.fetch; }): Link; export declare function logLink({ log, }?: { log?: typeof console.log; }): Link; export declare function throwLink({ maxCount }?: { maxCount?: number; }): Link; export declare function retryLink({ maxCount }?: { maxCount?: number; }): Link; //# sourceMappingURL=index.d.ts.map