export interface KeycloakToken extends Token { access_token: string; expires_in: number; refresh_expires_in?: number; refresh_token?: string; token_type: string; id_token?: string; 'not-before-policy': number; session_state?: string; scope: string; } export interface AuthServiceToken extends Token { access_token: string; expires_in: number; refresh_token?: string; token_type: string; auth_type?: string; scope: string; } export default interface Token { access_token: string; expires_in: number; token_type: string; scope: string; } export interface TokenRequestParams { client_id: string; client_secret: string; grant_type: string; scope: string; } //# sourceMappingURL=token.interface.d.ts.map