import AstItemContainer from './AstItemContainer';
import { IAstItemOptions } from './AstItem';
/**
 * This class is part of the AstItem abstract syntax tree. It represents a TypeScript enum definition.
 * The individual enum values are represented using AstEnumValue.
 */
export default class AstEnum extends AstItemContainer {
    constructor(options: IAstItemOptions);
}
