import type { FastifyRequest } from 'fastify';
import type { IncomingHttpHeaders } from 'undici/types/header';
import { type Response } from '../utils/request';
/** Sends request to platform with all needed headers and token */
export declare function sendRequestToPlatform(request: FastifyRequest, authHeader: string): Promise<Response>;
/** List of HTTP headers that should be excluded from forwarded requests */
export declare function getFilteredHeaders(headers: IncomingHttpHeaders): IncomingHttpHeaders;
