export declare class MaterialType { private readonly id; private readonly name; static WOOD: MaterialType; static ALUMINUM: MaterialType; static COMPOSITE: MaterialType; static OTHER: MaterialType; constructor(id: number, name: string); getId(): number; getName(): string; static asArray(): MaterialType[]; }