import * as React from 'react'; import { RefObject } from 'react'; import { BorderProps, IMarginProps, IPaddingProps } from '../../enhancers'; import { PolymorphicComponentProps } from '../Box'; export declare type FormGroupOwnProps = IPaddingProps & IMarginProps & BorderProps & { className?: string; }; export declare type FormGroupProps = PolymorphicComponentProps; declare const defaultElement = "div"; export declare const FormGroup: (props: FormGroupProps & { ref?: RefObject; }) => JSX.Element; export {};