1 | import * as React from "react";
|
2 |
|
3 | declare namespace InputGroupButton {
|
4 | export interface InputGroupButtonProps extends React.HTMLProps<InputGroupButton> {
|
5 | bsClass?: string | undefined;
|
6 | }
|
7 | }
|
8 | declare class InputGroupButton extends React.Component<InputGroupButton.InputGroupButtonProps> {}
|
9 | export = InputGroupButton;
|