export interface CookieAuth { authType: "Cookie"; } export interface BearerAuth { authType: "Bearer"; token: string; }