import { Token } from "@aurahelper/core";
/**
 * Class to Tokenizer Aura Javascript files
 */
export declare class JSTokenizer {
    /**
     * Method to Tokenize Aura Javscript file
     * @param {string} filePathOrContent File path or file content to tokenize
     * @param {number} [tabSize] Tab size
     * @returns {Token[]} Return file tokens
     */
    static tokenize(filePathOrContent: string, tabSize?: number): Token[];
}
