import type { FormProps } from "react-bootstrap/Form"; import type { FormGroupProps } from "react-bootstrap/FormGroup"; import type { FormControlProps } from "react-bootstrap/FormControl"; import type { FormCheckProps } from "react-bootstrap/FormCheck"; import type { FormCheckInputProps } from "react-bootstrap/FormCheckInput"; import type { FormCheckLabelProps } from "react-bootstrap/FormCheckLabel"; import type { FormFileProps } from "react-bootstrap/FormFile"; import type { FormLabelOwnProps, FormLabelWithColProps } from "react-bootstrap/FormLabel"; import type { FormTextProps } from "react-bootstrap/FormText"; import type SwitchProps from "react-bootstrap/Switch"; export interface IFormProps extends FormProps { } export interface IFormGroupProps extends FormGroupProps { } export interface IFormControlProps extends FormControlProps { } export interface IFormCheckProps extends FormCheckProps { } export interface IFormCheckInputProps extends FormCheckInputProps { } export interface IFormCheckLabelProps extends FormCheckLabelProps { } export interface IFormFileProps extends FormFileProps { } interface IFormLabelWithColProps extends FormLabelWithColProps { } interface IFormLabelOwnProps extends FormLabelOwnProps { } export declare type IFormLabelProps = IFormLabelWithColProps | IFormLabelOwnProps; export interface IFormTextProps extends FormTextProps { } export interface IToggleProps extends SwitchProps { } export {};