export declare class ConfigurationDetails { name: string; logo: string; color: string; images: {}; modules: {}; printers: Object[]; type: string; static fromJson(obj: any): ConfigurationDetails; toJson(): any; constructor(name: string, logo: string, color: string, images: {}, modules: {}, printers: Object[], type: string); getName(): string; getLogo(): string; getColor(): string; getImages(): {}; getModules(): {}; getPrinters(): Object[]; getType(): string; }