export type AuthOAuth2 = {
    access_token: string;
    token_type: 'Bearer';
    expires_in: number;
    refresh_token?: string;
};
