import type { SchemaObject } from "docusaurus-plugin-openapi-docs/src/openapi/types"; export interface SchemaSelections { [schemaPath: string]: number; } /** * Resolves a schema by replacing anyOf/oneOf with the selected option based on user selections. * * @param schema - The original schema object * @param selections - Map of schema paths to selected indices * @param basePath - The base path for this schema (used for looking up selections) * @returns A new schema with anyOf/oneOf resolved to selected options */ export declare function resolveSchemaWithSelections(schema: SchemaObject | undefined, selections: SchemaSelections, basePath?: string): SchemaObject | undefined;