import React, { ReactNode } from 'react'; import { MarginProps } from 'styled-system'; export interface FormGroupProps extends React.LabelHTMLAttributes, Pick { label: string; labelSecondary?: string; labelEndContent?: ReactNode; errorMessage?: string; children?: ReactNode; } declare const FormGroup: React.FC; export default FormGroup;