import type * as Extend from "../index"; /** * Mapping information between an input schema and the detected form fields. */ export interface EditSchemaGenerationMappingResult { /** Fields from the input schema that were successfully mapped to detected form fields. */ matches: Extend.EditSchemaGenerationMappingMatch[]; /** Input schema field paths that could not be matched to the form. */ unmatchedInputPaths: string[]; /** Detected form field keys that were not used by the input schema mapping. */ unusedFormFieldKeys: string[]; }