react-bootstrap-v5
Version:
Bootstrap 4 components built with React
12 lines (11 loc) • 459 B
TypeScript
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
declare type FormCheckInputType = 'checkbox' | 'radio';
export interface FormCheckInputProps extends BsPrefixProps {
id?: string;
type?: FormCheckInputType;
isValid?: boolean;
isInvalid?: boolean;
}
declare type FormCheckInput = BsPrefixRefForwardingComponent<'input', FormCheckInputProps>;
declare const FormCheckInput: FormCheckInput;
export default FormCheckInput;