import { GrammarMatcher } from './../grammar-matcher'; import { Statement } from 'typescript'; export declare const createStmtMatcher: (stmt: Statement, index: number) => StatementMatcher; export declare type IdCountMap = { [key: string]: any; }; export declare class StatementMatcher extends GrammarMatcher { stmt: Statement; index: number; constructor(stmt: Statement, index: number); code: string; arrayOps: string[]; idCountMap: IdCountMap; getCode(): this; getIds(): this; addToCountMap(id: string): this; parseGrammar(): void; findMatchedAndUnmatchedWords(): void; findMatchedWords(): void; findUnmatchedWords(): void; }