import { BaseOutputEntity } from '../../types';
export declare class OutputCounter implements BaseOutputEntity {
    description: string;
    eventInvolved: string[];
    id: string;
    tags: string[];
    value: number;
}
