import { PathItemObject } from 'openapi3-ts'; import { TypeContext } from "./type-context.js"; import { OpenApiTypeScriptConfig } from './config.js'; export declare class ClientMethodOld { private pathItem; name: string; private queryAndPathParameters; private bodyParameter; private returnType; private preBodyLines; private path; get hasQueryParameters(): boolean; get hasUrlParameters(): boolean; get hasBodyParameters(): boolean; constructor(id: string, pathItem: PathItemObject); private getParamName; private writeUrlParametersPart; writeParameters(context: TypeContext): string; writeReturnType(context: TypeContext): string; write(spacing: string, config: OpenApiTypeScriptConfig, context: TypeContext): string; }