import type { Path } from '../../types';
export type UseDataValueReturn<Value> = Value | undefined;
/**
 * Provides a path-scoped form data value subscription.
 */
export default function useDataValue<Value = unknown>(path: Path): UseDataValueReturn<Value>;
