UNPKG

628 BTypeScriptView Raw
1import * as React from 'react';
2export interface WizardBodyProps {
3 /** Anything that can be rendered in the Wizard body */
4 children: any;
5 /** Set to true to remove the default body padding */
6 hasNoBodyPadding: boolean;
7 /** An aria-label to use for the main element */
8 'aria-label'?: string;
9 /** Sets the aria-labelledby attribute for the main element */
10 'aria-labelledby': string;
11 /** Component used as the primary content container */
12 mainComponent?: React.ElementType;
13}
14export declare const WizardBody: React.FunctionComponent<WizardBodyProps>;
15//# sourceMappingURL=WizardBody.d.ts.map
\No newline at end of file