import type { SelectProps } from '../Select/types';
import type { TextInputProps } from '../TextInput/types';
declare type InputGroupChild = React.ReactElement<TextInputProps | SelectProps> | false | undefined;
export interface InputGroupProps {
    children: InputGroupChild | InputGroupChild[];
}
export {};
