import type { CachedToken, TokenStore } from './types.js'; /** * Persists the token in a Windmill variable so multiple scripts (and other * language clients) share one cache. `windmill-client` is provided by the * Windmill runtime — it is intentionally not a dependency of this package, * hence the dynamic import. */ export declare class WindmillTokenStore implements TokenStore { private readonly variablePath; constructor(variablePath: string); get(): Promise; set(token: CachedToken): Promise; }