/** * The PDF field type to edit. Allowed values depend on the schema type: * * `["string", "null"]` → `text`, `signature` * * `["number", "null"]` → `text` * * `["integer", "null"]` → `text` * * `["boolean", "null"]` → `checkbox`, `radio` * * `"array"` → `text`, `table` * * `"object"` → `signature` * * enum fields (no type) → `radio`, `optionList`, `dropdown` */ export declare const EditJsonExtendEditFieldType: { readonly Text: "text"; readonly Checkbox: "checkbox"; readonly Radio: "radio"; readonly Dropdown: "dropdown"; readonly OptionList: "optionList"; readonly Signature: "signature"; readonly Table: "table"; readonly Unknown: "unknown"; }; export type EditJsonExtendEditFieldType = (typeof EditJsonExtendEditFieldType)[keyof typeof EditJsonExtendEditFieldType] | string;