Files
est-frame/node_modules/react-bootstrap/esm/FormCheckInput.d.ts
2025-10-22 05:38:27 +00:00

11 lines
465 B
TypeScript
Executable File

import * as React from 'react';
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
type FormCheckInputType = 'checkbox' | 'radio';
export interface FormCheckInputProps extends BsPrefixProps, React.InputHTMLAttributes<HTMLInputElement> {
type?: FormCheckInputType;
isValid?: boolean;
isInvalid?: boolean;
}
declare const FormCheckInput: BsPrefixRefForwardingComponent<'input', FormCheckInputProps>;
export default FormCheckInput;