export interface IRefreshTokenOptions

{ onSuccess?: (principal: P) => void; onFailure?: (err: any) => void; } export declare function refreshTokensNeeded(): boolean; export declare function refreshTokens(): Promise;