import React from 'react'; import { Tree } from './Shared'; export interface WizardProps { tree: T; first: keyof T; initialData?: D | null; } /** * Declarative Wizard component for React. * @param props Takes in a tree, the first step of the wizard, and children. */ export declare function Wizard({ children, tree, first, initialData, }: React.PropsWithChildren>): React.ReactElement;