import React from 'react'; import { ExternalStyles } from '../../styles'; import { FormLabelProps } from './FormLabel'; export interface FormControlProps { htmlFor?: string; label?: FormLabelProps['label']; labelId?: FormLabelProps['id']; errorId?: string; required?: FormLabelProps['required']; error?: React.ReactNode; inline?: boolean; children?: React.ReactNode; style?: ExternalStyles; } export declare function FormControl(props: FormControlProps): JSX.Element;