import { Identifier, Node, VariableDeclaration, VariableDeclarationList, VariableStatement } from 'typescript'; import { WhereFn } from '../types'; export declare const getVariableStatementIdentifiers: (varStmts: VariableStatement[]) => Identifier[]; export declare const findVarDeclIdentifiers: (node: Node) => Identifier[]; export declare const findVariableDeclarationListIds: (declList: VariableDeclarationList) => Identifier[]; export declare const findVariableIdentifier: (node: Node) => Identifier | undefined; export declare const findVariableDeclaration: (node: Node, varId: string, where?: WhereFn | undefined) => VariableDeclaration | undefined;