import { type ParsedJwtToken } from "./token.js";
import { type JwtConfig } from "../../config/configuration.js";
export declare class JwtHandler {
    private readonly jwksClient;
    private readonly config;
    constructor(config: JwtConfig);
    validateToken(accessToken: string): Promise<ParsedJwtToken>;
    isValid(accessToken: string): Promise<boolean>;
    private verifyToken;
    private extractClaims;
}
//# sourceMappingURL=validator.d.ts.map