UNPKG

507 BTypeScriptView Raw
1import * as React from 'react';
2export interface FormFieldGroupProps 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?: React.ReactNode;
9}
10export declare const FormFieldGroup: React.FunctionComponent<FormFieldGroupProps>;
11//# sourceMappingURL=FormFieldGroup.d.ts.map
\No newline at end of file