import { GrammarMatcher } from './../grammar-matcher'; import { Block } from 'typescript'; export declare const mapWords: (words: string[], includeMap: any, excludeMap?: any) => any[]; export declare const idMatcher: (identifier: string) => IdentifierMatcher; export declare const determineMainIdentifier: (block: Block) => string | undefined; export declare const isNoun: (txt: string) => any; export declare class IdentifierMatcher extends GrammarMatcher { identifier: string; constructor(identifier: string); humanize(str: string): string; split(): this; getAdjectives(): this; getPrepositions(): void; getNouns(): this; getVerbs(): this; }