import BsFormControl from "react-bootstrap/FormControl"; import type { FormControlProps } from "react-bootstrap/FormControl"; import type { BsPrefixRefForwardingComponent } from "react-bootstrap/helpers"; import type { ReactNode } from "react"; declare type IFormControlWrapper = BsPrefixRefForwardingComponent<"input", FormControlProps>; export interface IFormControl extends IFormControlWrapper { Feedback: typeof BsFormControl.Feedback; } export interface IFormControlProps extends FormControlProps { children?: ReactNode; } export declare const FormControl: IFormControl; export default FormControl;