import { KaotoSchemaDefinition } from '../models'; import { OneOfSchemas } from '../utils/get-oneof-schema-list'; interface AppliedSchema { index: number; name: string; description?: string; schema: KaotoSchemaDefinition['schema']; model: Record; } export declare const useAppliedSchema: (fieldName: string, oneOfSchemas: OneOfSchemas[]) => AppliedSchema | undefined; export {};