import { TRequestConfigs } from '../configs'; export type TRouteConfigs = { method: 'GET'; } | { method: 'POST'; payload: unknown; }; export declare const parseRequestOptions: (requestConfigs: TRequestConfigs, routeConfigs: TRouteConfigs & { route: string; }) => { json?: unknown; method: "GET" | "POST"; url: string; headers: { 'Content-Type': string; 'User-Agent': string; 'X-Device': string; }; };