import { FetchService, RequestInterceptor } from '@conduit-client/service-fetch-network/v1'; /** * Creates a request interceptor that prepends a base URL to relative string URLs. * * @param baseUrl - The base URL to prepend (e.g. "https://myorg.salesforce.com") */ export declare function createBaseUrlInterceptor(baseUrl: string): RequestInterceptor; /** * Creates a request interceptor that adds an Authorization Bearer header. * * @param accessToken - The access token to use for authentication */ export declare function createAuthInterceptor(accessToken: string): RequestInterceptor; /** * Creates a fetch service configured with optional base URL and auth interceptors. * * @param baseUrl - Optional base URL for resolving relative paths * @param accessToken - Optional access token for Bearer authentication */ export declare function createMosaicFetchService(baseUrl?: string, accessToken?: string): FetchService; //# sourceMappingURL=fetch.d.ts.map