export interface TokenResponse { access_token: string; token_type: string; expires_in: number; refresh_token: string; refresh_expires_in: number; membership_id: string; } export interface TokenError { error: string; error_description: string; }