import type { FastifyReply, FastifyRequest } from 'fastify';
import FastController from './FastController';
declare class SecureFastController extends FastController {
    static scope: string;
    onPreValidation(_request: FastifyRequest, _reply: FastifyReply, done: (err?: Error) => void): void | Promise<unknown>;
}
export default SecureFastController;
