import type { ICoreError, NSchemeService, IRouteException, IValidatorError, IExceptionProvider, NExceptionProvider } from "../.."; export declare class ExceptionProvider implements IExceptionProvider { throwValidation(errors: NSchemeService.ValidateErrors): IValidatorError; resolveValidation(e: IValidatorError): NExceptionProvider.ResolveValidationStructure; throwRoute(e: IRouteException): IRouteException; resolveRoute(options: IRouteException): NExceptionProvider.ResolveRouteStructure; throwError(message: string, options: NExceptionProvider.CoreError): ICoreError; }