A map of validation error kind strings to their message rendering functions.
const messages: ErrorMessageMap = { required: () => 'This field is required.', minLength: (e) => `Minimum ${(e as unknown as { minLength: number }).minLength} characters.`,};