import BsForm from "react-bootstrap/Form"; import type { BsPrefixRefForwardingComponent } from "react-bootstrap/helpers"; import type { IFormProps } from "./Form.types"; declare type IFormWrapper = BsPrefixRefForwardingComponent<"form", IFormProps>; export interface IForm extends IFormWrapper { Row: typeof BsForm.Row; Group: typeof BsForm.Group; Label: typeof BsForm.Label; Text: typeof BsForm.Text; Control: typeof BsForm.Control; Check: typeof BsForm.Check; File: typeof BsForm.File; Toggle: typeof BsForm.Switch; } export declare const Form: IForm; export type { IFormProps, IFormGroupProps, IFormControlProps, IFormCheckProps, IFormFileProps, IFormLabelProps, IFormTextProps, IToggleProps, IFormCheckInputProps, IFormCheckLabelProps, } from "./Form.types"; export default Form;