import { ClassDeclaration, Decorator, Identifier, Node } from 'typescript'; import { WhereFn } from '../types'; export declare const findClassDeclaration: (vsNode: Node, classId: string, where?: WhereFn | undefined) => ClassDeclaration | undefined; export declare const findClassDecorator: (node: Node, { classId, decoratorId }: { classId: string; decoratorId: string; }) => Decorator | undefined; export declare const findClassDeclIdentifiers: (node: Node) => Identifier[];