import type { ReactElement } from 'react';
type Props = {
    children: ReactElement | ReactElement[];
    error: boolean;
    fullWidth?: boolean;
};
declare const FormControl: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default FormControl;
