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