import type { Destination } from './destination';
/**
 * Build a request header object, that contains authentication headers and SAP specific headers like 'sap-client', from a given destination.
 * @param destination - The given destination that contains e.g., authentication and SAP client information.
 * @returns A request header object, built from the given destination.
 */
export declare function buildHeadersForDestination(destination: Destination): Promise<Record<string, string>>;
