import * as React from 'react'; import { XInputGroupItem } from "./XInputGroupItem"; import { ContentChildrenManager } from "igniteui-react-core"; export declare abstract class IgrXInputGroupItem
extends React.Component
{
protected createImplementation(): XInputGroupItem;
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): XInputGroupItem; /**
* @hidden
*/
static _createFromInternal(internal: any): IgrXInputGroupItem;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
constructor(props: P);
componentDidMount(): void;
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
render(): any;
/**
* Gets or sets name to use for the button.
*/
get name(): string;
set name(v: string);
findByName(name: string): any;
protected __p: string;
protected _hasUserValues: Set