export interface InputGroupItemProps { /** * Provided children are displayed with flexbox (row), and their spacing is applied * with CSS and design tokens. */ children: React.ReactNode; } declare const InputGroupItem: React.FC; export default InputGroupItem;