import ts from 'typescript'; /** * Type predicate function that returns true if the node is a `ts.ClassDeclaration` or a * `ts.VariableStatement` that has as initializer a `ts.ClassExpression`. * * @param node - The `ts.Node` to check * @returns The node is a ClassDeclaration or a ClassExpression */ export declare function isClassDeclaration(node: ts.Node): node is ts.ClassDeclaration | ts.VariableStatement; //# sourceMappingURL=class.d.ts.map