export declare class RundeckVersion { private versionString; private versionData; private versionDate; private colorIdentity; private nameIdentity; private iconIdentity; private appId; private serverName?; constructor(data: any); static csscolors: string[]; static glyphicons2: string[]; static glyphicons3: string[]; static names: string[]; static names3: string[]; splitVersion(versionString: string): { [p: string]: any; }; splitUUID(versionString: string): { [key: string]: any; }; stripeBg(color: string, px1: number, colorb: string, px2: number): string; /** * return value from list % list length * @param list * @param val number */ inList(list: any[], val: number): any; colorForVersion(val: number): any; nameForVersion(val: number): any; iconForVersion(val: any): any; iconForVersion2(val: number): any; data(): { [key: string]: any; }; versionColor(): any; versionSemantic(): any; versionName(): any; versionIcon(): any; text(): string; }