export interface ITypeDropDownItem { id: string; title: string; formats: string[]; disabled?: boolean; } export interface ITypeDropDownItemSelection { id: string; title: string; format?: string; }