import type { PathsObject as OpenAPI3PathsObject } from '../open-api-v3'; import type { OpenApiPaths, OpenApiPath } from '../type'; export declare function parsePaths(object?: OpenAPI3PathsObject): OpenApiPaths; export declare function parsePath(name: string, value: any): OpenApiPath; export declare function pathsToTypeCode(paths: OpenApiPaths): string; export declare function pathToTypeCode(path: OpenApiPath): [code: string, comment: string]; export declare function commandsToTypeCode(paths: OpenApiPaths): string; export declare function commandToTypeCode(path: OpenApiPath): [code: string, comment: string];