import { type DataContextValue } from "../hooks/useDataContext"; interface DataProviderProps extends DataContextValue { children?: React.ReactNode; } /** * Provides a data scope to its subtree: a per-building `propertyId` (D8, injected by a * compile-time Repeat) and/or a runtime record bound to `as` plus the accumulated `records` * map (injected per record by the runtime Repeat). Passthrough render. */ export declare function DataProvider({ propertyId, as, record, records, children }: DataProviderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DataProvider.d.ts.map