UNPKG

930 BTypeScriptView Raw
1import * as React from 'react';
2export interface InternalFormFieldGroupProps extends Omit<React.HTMLProps<HTMLDivElement>, 'label'> {
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?: any;
9 /** Flag indicating if the field group is expandable */
10 isExpandable?: boolean;
11 /** Flag indicate if the form field group is expanded. Modifies the card to be expandable. */
12 isExpanded?: boolean;
13 /** Function callback called when user clicks toggle button */
14 onToggle?: () => void;
15 /** Aria-label to use on the form field group toggle button */
16 toggleAriaLabel?: string;
17}
18export declare const InternalFormFieldGroup: React.FunctionComponent<InternalFormFieldGroupProps>;
19//# sourceMappingURL=InternalFormFieldGroup.d.ts.map
\No newline at end of file