import type { ApplicationService } from '@adonisjs/core/types'; /** * ValidatorProvider is used to configure the validator using the * "config/validator.ts" config file. */ export default class ValidatorProvider { protected app: ApplicationService; constructor(app: ApplicationService); /** * Configure the validator */ protected configureValidator(): Promise; boot(): Promise; }