UNPKG

728 BTypeScriptView Raw
1import * as React from 'react';
2export interface FormFieldGroupExpandableProps extends React.HTMLProps<HTMLDivElement> {
3 /** Anything that can be rendered as form field group content. */
4 children?: React.ReactNode;
5 /** Additional classes added to the form field group. */
6 className?: string;
7 /** Form field group header */
8 header?: React.ReactNode;
9 /** Flag indicating if the form field group is initially expanded */
10 isExpanded?: boolean;
11 /** Aria-label to use on the form field group toggle button */
12 toggleAriaLabel?: string;
13}
14export declare const FormFieldGroupExpandable: React.FunctionComponent<FormFieldGroupExpandableProps>;
15//# sourceMappingURL=FormFieldGroupExpandable.d.ts.map
\No newline at end of file