import { AstItem, IAstItemOptions } from './AstItem';
/**
 * This class is part of the AstItem abstract syntax tree. It represents a TypeScript enum value.
 * The parent container will always be an AstEnum instance.
 */
export declare class AstEnumValue extends AstItem {
    constructor(options: IAstItemOptions);
    /**
     * Returns a text string such as "MyValue = 123,"
     */
    getDeclarationLine(): string;
}
