import React from 'react';
import type { InputGroupProps } from './types';
/** Useful for when you want a group of `TextInput` and `Select` components to be rendered as one block.
 * Visible labels should not be used on the middle or last children or it may lead to unexpected results.
 */
export declare const InputGroup: ({ children }: InputGroupProps) => React.JSX.Element;
