import { ComponentState } from '../../types'; export interface FieldOptionEditorOption { id: string; name: string; order: number; } export interface FieldOptionsEditorMetadata { title?: string; hint?: string; addLabel?: string; optionsLabel?: string; placeholder?: string; emptyText?: string; removeOptionLabel?: string; reorderOptionLabel?: string; state?: ComponentState; options?: FieldOptionEditorOption[]; }