export interface SDKOptions {
    authToken: string;
    userAgent?: string;
    customHeaders?: Record<string, string>;
}
/**
 * Generate HTTP headers for API requests
 * @param options SDK configuration options
 * @param includeAuth Whether to include authentication headers
 * @param requestBody Request body for signature (optional)
 * @returns Record of HTTP headers
 */
export declare function generateHeaders(options: SDKOptions, includeAuth?: boolean, requestBody?: any): Record<string, string>;
//# sourceMappingURL=headers.d.ts.map