/** * Data Transfer Object for field options. * This class defines the structure and properties of a field option * that can be used in form fields. */ export declare class FieldOptionDto { /** * Key of the field option */ key: string; /** * Value of the field option */ value: string; /** * Indicates if the field option is disabled */ disabled?: boolean; }