import { Request, Response, NextFunction } from 'express';
import { Options } from 'jwks-rsa';
export declare class IonValidation {
    private ionAuth;
    constructor(option?: Options);
    validate(): (req: Request, res: Response, next: NextFunction) => Promise<void>;
    private setErrorAuthenticateHeader;
}
