import type { HttpMethod } from '@scalar/helpers/http/http-methods'; /** Parse and normalize a curl command */ export declare function parseCurlCommand(curlCommand: string): { url: string; method?: HttpMethod; headers?: Record; body?: string; queryParameters?: Array<{ key: string; value: string; }>; servers?: string[]; }; //# sourceMappingURL=parse-curl.d.ts.map