import type { JsonApiValidationError } from './useValidation.types'; /** * Parses an array of JSON:API error objects into a map of field names to error messages. * Uses `source.pointer` to determine the field (e.g. `/data/attributes/email` → `email`) and `detail` (or `title`) as the message. * If multiple errors reference the same field, the last one wins. */ export declare function parseJsonApiFieldErrors(errors: JsonApiValidationError[]): Record;