UNPKG

@breakaway/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

14 lines 609 B
/// <reference types="react" /> import { WizardProps } from './Wizard'; import { WizardNavProps } from './WizardNav'; /** * Hosts deafult wizard navigation logic by utilizing the wizard's context and WizardNav/WizardNavItem. * This component is not exposed to consumers. */ interface WizardNavInternalProps extends Pick<WizardProps, 'isStepVisitRequired'> { nav: Partial<WizardNavProps>; isNavExpanded: boolean; } export declare const WizardNavInternal: ({ nav, isStepVisitRequired, isNavExpanded }: WizardNavInternalProps) => JSX.Element; export {}; //# sourceMappingURL=WizardNavInternal.d.ts.map