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