We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 492814d commit f3aa9b7Copy full SHA for f3aa9b7
packages/react-form-renderer/src/files/wizard-context.d.ts
@@ -1,3 +1,4 @@
1
+import React from 'react';
2
import { FormOptions } from './renderer-context';
3
4
export interface WizardContextValue {
@@ -16,8 +17,6 @@ export interface WizardContextValue {
16
17
prevSteps: string[];
18
}
19
-interface WizardContext {
20
- value: WizardContextValue;
21
-}
+declare const WizardContext: React.Context<WizardContextValue>;
22
23
export default WizardContext;
0 commit comments