import type { BuildConfig } from "../../types/build-type.js"; import type { OpenApiMetadata } from "./types.js"; /** * Look up OpenAPI metadata for [action, ...segments]. Finds the requestBody * schema for `/action` (post) in `paths`, resolves $ref/allOf/oneOf/anyOf, * and walks segments through `properties`. Numeric segments descend into * `items` (arrays). Returns merged description/_description/type/enum. */ export declare function lookupOpenApi(config: BuildConfig, action: string, segments: string[]): OpenApiMetadata | null; //# sourceMappingURL=openapi-lookup.d.ts.map