/** * * Data transfer object representing a labelled occurrence count, typically used for aggregation * results. * / */ export declare class LabelledOccurence { /** * * The label identifying what is being counted. */ label: string; /** * * The number of occurrences for this label. */ occurence: number; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): LabelledOccurence; }