import * as React from 'react'; export interface InputGroupProps extends React.HTMLProps { /** Additional classes added to the input group. */ className?: string; /** Content rendered inside the input group. */ children: React.ReactNode; /** @hide A reference object to attach to the input box */ innerRef?: React.Ref; } export declare const InputGroupBase: React.FunctionComponent; export declare const InputGroup: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=InputGroup.d.ts.map