export interface Authentication { /** * * @param subscriber */ refreshToken(): Promise; /** * * @param subscriber */ token(): Promise; /** * * @param subscriber */ isPublic(): boolean; }