/** * @file Data Hooks Module Index * @description Exports for React hooks for data validation, synchronization, * integrity checking, and normalized data management. */ export { useDataValidation, useValidateOnChange, useValidateValue, useAsyncValidation, type ValidationMode, type FieldErrors, type ValidationState, type UseDataValidationOptions, type UseDataValidationReturn, } from './useDataValidation'; export { useDataSync, useSyncStatus, useSyncConflicts, type SyncState, type UseDataSyncOptions, type UseDataSyncReturn, } from './useDataSync'; export { useDataIntegrity, useIntegrityMonitor, useIntegrityDrift, useEntityIntegrity, type IntegrityState, type UseDataIntegrityOptions, type UseDataIntegrityReturn, } from './useDataIntegrity'; export { useNormalizedData, useEntity, useEntities, useAllEntities, useEntitySelector, useNormalizedCrud, createNormalizedStore, type NormalizedStore, type NormalizedDataState, type UseNormalizedDataOptions, type UseNormalizedDataReturn, } from './useNormalizedData';