import { ICachePlugin } from '@azure/msal-node';
export default class LocalCachePlugin implements ICachePlugin {
    private readonly _accessTokenPath;
    constructor(path: string);
    beforeCacheAccess(cacheContext: any): Promise<void>;
    afterCacheAccess(cacheContext: any): Promise<void>;
}
