import type { TProperties, TSchema } from '../../type/index.mjs'; import type { TLocalizedValidationError } from '../../error/index.mjs'; /** Returns an array of validation errors for the given value. */ export declare function Errors(type: Type, value: unknown): TLocalizedValidationError[]; /** Returns an array of validation errors for the given value. */ export declare function Errors(context: Context, type: Type, value: unknown): TLocalizedValidationError[];