export interface DataPathResolution { exists: boolean; value?: unknown; isArray?: boolean; } /** * Resolves a dot-separated data path against a sample data object. * * @param data - The root data object to resolve against * @param path - Dot-separated path, e.g. "data.items" or "data.info.firstName" * @returns Resolution result indicating whether the path exists and its value */ export declare function resolveDataPath(data: Record, path: string): DataPathResolution;