import { CommonToken } from '../types/index'; export declare const createTokenizer: (input: string) => any; export declare function tokenize(input: string): CommonToken[]; export interface GetIdentifersResult { identifiers: string[]; strings: string[]; } export declare function getIdentifiers(tokens: CommonToken[]): GetIdentifersResult;