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