import * as React from "react"; export type FormGroupProps = { disableStyles?: boolean | undefined; } & { [x: string]: any }; declare const FormGroup: React.FunctionComponent & { displayName: "FormGroup" }; export default FormGroup;