/// <reference types="react" />
export interface IFormControlProps {
    className?: string;
    style?: React.CSSProperties;
    children?: React.ReactNode;
    required?: boolean;
    invalid?: boolean;
    label?: React.ReactNode;
    withoutLabel?: boolean;
}
export declare const FormControl: import("react").ForwardRefExoticComponent<IFormControlProps & import("react").RefAttributes<HTMLDivElement>>;
