import { ErrorObject } from "ajv"; import { KuzzleError } from "kuzzle"; export declare class SchemaValidationError extends KuzzleError { private schemaErrors; constructor(message: string, schemaErrors: ErrorObject[], id?: string, code?: number); get name(): string; toJSON(): import("kuzzle").JSONObject; }