export interface DetectOptions { nuxt: boolean; } export { parseData, ScriptProcessor, parseMethods, parseProps, parseWatch, preProcess, } from './parse/script'; export { parseTemplate } from './parse/template'; export { getTemplateStatementVariable, getVariable, } from './parse/templateStatement'; /** * 获取当前单文件应用的未使用token 以及相应的描述 * * @export * @param {string} sourceCode * @returns */ export declare function unusedToken(sourceCode: string, options?: DetectOptions): import("./parse/script").NodeDescription[];