We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 492814d + f3aa9b7 commit 40183f6Copy full SHA for 40183f6
1 file changed
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