export interface AuthParameter { name: string; value: string; isQuoted: boolean; } export interface Challenge { scheme: string; token68?: string; parameters: AuthParameter[]; } /** * Parses WWW-Authenticate or Proxy-Authenticate header values into Challenges. * Follows RFC 9110 Section 11 format. */ export declare function parseChallenges(headerValue: string): Challenge[]; //# sourceMappingURL=auth-parser.d.ts.map