interface WizardComponentType {
    new WizardComponentTypenew (props: WizardProps, context?: any): Component<WizardProps, any, any>;
    childContextTypes?: ValidationMap<any>;
    Content: WizardContentComponentType;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<WizardProps>;
    displayName?: string;
    Footer: WizardFooterComponentType;
    getDerivedStateFromError?: GetDerivedStateFromError<WizardProps, any>;
    getDerivedStateFromProps?: GetDerivedStateFromProps<WizardProps, any>;
    Navigation: WizardNavigationComponentType;
    propTypes?: WeakValidationMap<WizardProps>;
}

Hierarchy (view full)

Constructors

Properties

childContextTypes?: ValidationMap<any>
contextType?: Context<any>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<WizardProps>
displayName?: string
getDerivedStateFromError?: GetDerivedStateFromError<WizardProps, any>
getDerivedStateFromProps?: GetDerivedStateFromProps<WizardProps, any>