/**
 * Represents the response object returned by an OAuth2 token request.
 */
export interface OAuth2TokenResponse {
    access_token: string;
    token_type: 'bearer';
    expires_in: number;
    scope: string[];
}
