import { HttpRequest } from "../types"; import { VariableManager } from "./VariableManager"; export declare class HttpFileParser { private variableManager; constructor(variableManager: VariableManager); parse(filePath: string): Promise; private removeComments; private splitIntoSections; private parseRequests; private handleGlobalVariables; }