import { EnumOption } from "@jooler/shared-general-components"; import { LineType } from "./line-type.model"; export declare class LineTypeModelHelper { static label: string; static color: string; static description: string; static value: any; static getItems(): EnumOption[]; static setStringValueAndColor(type: LineType): "gold" | "platinum" | "Gray"; getValue(label: string): 0 | 1; static getLabelAndColorForValue(value: number): any; }