import { ReactNode } from "react"; import { BoxProps } from "../Box"; import { STATUS_VARIANT, THEME } from "../../types"; interface FormGroupProps extends BoxProps { isRequired?: boolean; hasDivider?: boolean; id?: string; variant?: STATUS_VARIANT; theme?: THEME; children: ReactNode; } export declare const FormGroup: (props: FormGroupProps) => JSX.Element; export {};