export declare type Token = string; export interface ITokenProvider { get: () => Promise; refresh: () => Promise; }