UNPKG

639 BTypeScriptView Raw
1import * as React from 'react';
2import { type FormCheckInputProps } from './FormCheckInput';
3import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
4export interface InputGroupProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
5 size?: 'sm' | 'lg';
6 hasValidation?: boolean;
7}
8declare const _default: BsPrefixRefForwardingComponent<"div", InputGroupProps> & {
9 Text: BsPrefixRefForwardingComponent<"span", import("./InputGroupText").InputGroupTextProps>;
10 Radio: (props: FormCheckInputProps) => JSX.Element;
11 Checkbox: (props: FormCheckInputProps) => JSX.Element;
12};
13export default _default;