1 | import * as React from "react";
|
2 | import { Sizes } from "react-bootstrap";
|
3 | import InputGroupAddon = require("./InputGroupAddon");
|
4 | import InputGroupButton = require("./InputGroupButton");
|
5 |
|
6 | declare namespace InputGroup {
|
7 | export interface InputGroupProps extends React.HTMLProps<InputGroup> {
|
8 | bsClass?: string | undefined;
|
9 | bsSize?: Sizes | undefined;
|
10 | }
|
11 | }
|
12 | declare class InputGroup extends React.Component<InputGroup.InputGroupProps> {
|
13 | public static Addon: typeof InputGroupAddon;
|
14 | public static Button: typeof InputGroupButton;
|
15 | }
|
16 | export = InputGroup;
|