import { ISpecEnums } from './../../spec/SpecEnums';
export declare class EnumType {
    tag: number | null;
    value: string | number | null;
    symbolicName: string | null;
    group: string | null;
    sort: number | null;
    description: string | null;
    elaboration: string | null;
    added: string | null;
    setEnumeration(enumType: ISpecEnums): void;
}
