export interface ElementGroup { name: string; sorting: number; color: string; elements: string[]; } export declare const getElementGroups: () => Map; export declare const getElementGroup: (primName: string) => ElementGroup | null;