export interface MenuOptions { id?: number; title?: string; icon?: string; route?: string; children?: Array; divider?: boolean; } export interface Theme { background: string; color: string; }