import { KaotoSchemaDefinition } from '../models'; export interface OneOfSchemas { name: string; description?: string; schema: KaotoSchemaDefinition['schema']; } export declare const getOneOfSchemaList: (oneOfList: KaotoSchemaDefinition['schema'][], rootSchema?: KaotoSchemaDefinition['schema']) => OneOfSchemas[];