import { CreateFetchParamsArgs, CreateFetchParamsResult } from '../utils/createFetchParams/createFetchParams'; import { Adapters } from '../adapters/types'; /** * Build a request: run createFetchParams, then let the active auth transport decorate the options * (cookie sets credentials:'include'; bearer adds the Authorization header from the storage it was constructed with). */ export declare const buildRequest: (args: CreateFetchParamsArgs, adapters: Adapters) => Promise;