import { InjectionToken } from '@angular/core'; export interface IAuthConfig { refresh_url?: string; /** * Clave del token en la respuesta del endpoint de refresh. * AWS Cognito retorna 'access_token' por defecto. */ refresh_token_key?: string; } export declare const AUTH_CONFIG: InjectionToken;