export interface IElementSection { title: string; children: IElementItem[]; group: 'default' | 'member' | 'all'; } export interface IElementItem { title: string; icon: string; component: string; } export declare const Elements: IElementSection[];