import { DataType } from '../../ast/entity/data-type'; export declare class EnumType extends DataType { elements: string[]; constructor(type: number); getElements(): string[]; addElement(element: string): void; isBoolean(): boolean; }