import { ArrayLiteralExpression, Expression } from 'ts-morph'; export declare function IsArrayLiteralExpression(expression?: Expression): expression is ArrayLiteralExpression; export declare function AssertArrayLiteralExpression(expression: Expression | undefined, variableDeclarationName: string): asserts expression is ArrayLiteralExpression;