/** * Helper function to get nested error from react-hook-form errors object * Handles both simple field names and nested array field names using dot notation (e.g., "attributes.0.value") * Also supports legacy bracket notation for backward compatibility */ export declare const getNestedError: (name: string, errors: any, error?: string) => string | undefined;