import React from 'react'; export interface Tree { readonly [step: string]: readonly string[]; } export declare type ControlType = Record void>; export interface WizardContextProps { tree: T; step: string; getControls: () => ControlType; data: D | null; back: (data?: D) => void; } export declare const WizardContext: React.Context>;