UNPKG

381 BTypeScriptView Raw
1import FormCheck, { FormCheckProps } from './FormCheck';
2import { BsPrefixRefForwardingComponent } from './helpers';
3declare type SwitchProps = Omit<FormCheckProps, 'type'>;
4declare type Switch = BsPrefixRefForwardingComponent<FormCheck, SwitchProps> & {
5 Input: typeof FormCheck.Input;
6 Label: typeof FormCheck.Label;
7};
8declare const Switch: Switch;
9export default Switch;