export interface IDropDownActions { id: number; data: DropDownData; type: string; } export interface DropDownData { id: number; title: string; mutedStyle: boolean; name: string; disabled?: boolean; hasBorder?: boolean; svgClass?: string; svgStyle?: { height: number; width: number }; svgUrl?: string; }