/** * Advanced options for the edit operation. */ export interface EditConfigAdvancedOptions { /** Whether to parse table regions as arrays of objects. Defaults to `false`. */ tableParsingEnabled?: boolean; /** Whether to flatten PDF forms after editing (makes form fields non-editable). Defaults to `true`. */ flattenPdf?: boolean; /** Whether to model radio fields as enums. This ensures only one radio widget is filled. Defaults to false. */ radioEnumsEnabled?: boolean; /** If enabled, only native AcroForm from the PDF will be imported and used in the schema (skips object detection). Defaults to false. */ nativeFieldsOnly?: boolean; }