import type { DefinedError } from 'ajv'; export interface AjvErrorParserOptions { json: boolean; delimiter: string; } export declare function parseErrors(errors: DefinedError[], options?: AjvErrorParserOptions): string[] | string;