import * as React from 'react'; export interface TextInputGroupProps extends React.HTMLProps { /** Content rendered inside the text input group */ children?: React.ReactNode; /** Additional classes applied to the text input group container */ className?: string; /** Adds disabled styling and a disabled context value which text input group main hooks into for the input itself */ isDisabled?: boolean; } export declare const TextInputGroupContext: React.Context>; export declare const TextInputGroup: React.FunctionComponent; //# sourceMappingURL=TextInputGroup.d.ts.map