UNPKG

589 BTypeScriptView Raw
1import * as React from 'react';
2export interface WizardNavProps {
3 /** children should be WizardNavItem components */
4 children?: any;
5 /** Aria-label applied to the nav element */
6 'aria-label'?: string;
7 /** Sets the aria-labelledby attribute on the nav element */
8 'aria-labelledby'?: string;
9 /** Whether the nav is expanded */
10 isOpen?: boolean;
11 /** True to return the inner list without the wrapping nav element */
12 returnList?: boolean;
13}
14export declare const WizardNav: React.FunctionComponent<WizardNavProps>;
15//# sourceMappingURL=WizardNav.d.ts.map
\No newline at end of file