import type * as Extend from "../index"; /** * Configuration options for edit schema generation. */ export interface EditSchemaGenerationConfig { /** * Optional existing edit schema to map onto the detected form fields. When provided, the response may include a `mappingResult` * that shows which input schema paths matched the generated form fields. */ inputSchema?: Extend.EditRootJson; /** Custom instructions provided for schema generation. */ instructions?: string; /** Advanced options for schema generation. */ advancedOptions?: Extend.EditSchemaGenerationConfigAdvancedOptions; }