///
export interface InputGroupTextProps extends React.HTMLProps {
/** Additional classes added to the input group text. */
className?: string;
/** Content rendered inside the input group text. */
children: React.ReactNode;
/** Component that wraps the input group text. */
component?: React.ReactNode;
/** Flag to to indicate if the input group item is plain. */
isPlain?: boolean;
/** Flag to indicate if the input group text is disabled. */
isDisabled?: boolean;
}
export declare const InputGroupText: React.FunctionComponent;
//# sourceMappingURL=InputGroupText.d.ts.map