import { AstBlock } from './ast-block'; import { ArrayLiteralExpression } from 'typescript'; import { AstNode } from './ast-node'; export declare class AstArrayValue implements AstNode { private block; node: ArrayLiteralExpression; constructor(block: AstBlock, node: ArrayLiteralExpression); get elements(): Generator; private getElements; }