import { FC, HTMLAttributes, ReactNode } from 'react'; import { StandardProps } from '@react-foundry/component-helpers'; import '../assets/FormGroup.scss'; export type FormGroupProps = StandardProps & Omit, 'id' | 'label'> & { children?: ReactNode; error?: ReactNode; errorId?: string; fieldId?: string; hint?: ReactNode; hintId?: string; id: string; label: ReactNode; standalone?: boolean; }; export declare const FormGroup: FC; export default FormGroup;