import { ILabel } from './model'; export declare class Label implements ILabel { CategoryID: string; ID: string; Name: string; static fromInterface(data: ILabel): Label; displayLabel(): string; equal(data: Label): boolean; }