import type { FC, PropsWithChildren } from 'react'; export type FormGroupProps = PropsWithChildren<{ className?: string; label: string; }>; export declare const FormGroup: FC;