import { DeclarationMeta } from "../parser"; import { EnumMembers, EnumType } from "./EnumType"; import { TypeDeclaration } from "./TypeDeclaration"; export declare class EnumTypeDeclaration extends TypeDeclaration { type: EnumType; constructor(meta: DeclarationMeta, members: EnumMembers); toString(): string; typeToString(): string; }