export interface AccessTokenResponse {
    access_token: string;
    expires_in: number;
    scope: string;
    token_type: string;
    principal?: string;
    refresh_token?: string;
}
