import { Plugin } from "../../types/Plugin.mjs"; //#region src/use/token/browser.d.ts type TokenFn = (() => string) & { IS_TOKEN_FN?: boolean; }; type TokenProxy = TokenFn & { [key: string]: TokenProxy; }; declare const tokenVars: (input?: Record) => Record; declare const onInit: Plugin<'onInit'>; declare const create: (currentKey?: string) => TokenProxy; declare const tokenPaths: Set; declare const onBrowserObjectStart: Plugin<'onBrowserObjectStart'>; //#endregion export { TokenProxy, create, onBrowserObjectStart, onInit, tokenPaths, tokenVars };