import type ISPCookieRefresher from './ISPCookieRefresher'; import { type ServiceScope, ServiceKey } from '@microsoft/sp-core-library'; /** * This class refreshes cookies for SPO * * @internal */ export declare class DeferredCookieRefresher implements ISPCookieRefresher { /** * The service key for DeferredCookieRefresher. */ static readonly serviceKey: ServiceKey; private _serviceScope; private _cookieRefresher; constructor(serviceScope: ServiceScope); /** * Refresh the SPO cookie * * @internal */ refreshCookie(claims: string | undefined, reauthId: string | undefined, usePopupAuth: boolean): Promise; private _getCookieRefresher; } //# sourceMappingURL=DeferredCookieRefresher.d.ts.map