import { FunctionComponent, PropsWithChildren } from 'react'; export interface ModelContextValue { model: unknown; errors?: Record; onPropertyChange: (propName: string, value: unknown) => void; disabled?: boolean; } export declare const ModelContext: import("react").Context; export declare const ModelContextProvider: FunctionComponent>; //# sourceMappingURL=ModelProvider.d.ts.map