type MetaTemplateEntryType = 'string' | 'date' | 'sdate' | 'boolean' | 'sboolean' interface KeyValueItem { key: string; value: string; } export default interface MetaTemplateEntry { type: MetaTemplateEntryType; key: string; label: string; description: string; placeholder: string; message: string; error: boolean; disabled: boolean; items: KeyValueItem[]; testId: string; inputId: string; }