import React from "react"; export interface WizardNavigationProps { toOrigin?: boolean; keepSearch?: boolean; } export interface ContextProps { displayWarnings: (warnings: string[]) => void; onBack: (params?: WizardNavigationProps) => void; onNext?: (params?: WizardNavigationProps) => void; onSubmit: () => void; setOnSubmit: (f: (...args: any[]) => void) => void; setIsLoading: (isLoading: boolean) => void; setHasError: (hasError: boolean) => void; setIsComplete?: (isComplete: boolean) => void; confirmActionOpen?: boolean; setConfirmActionOpen?: (open: boolean) => void; } declare const WizardContext: React.Context<() => ContextProps>; declare const useWizardContext: () => ContextProps; export { WizardContext, useWizardContext }; //# sourceMappingURL=wizard-context.d.ts.map