import React from 'react'; import type { CommonComponentProps } from '../types'; interface InputGroupItemProps extends CommonComponentProps { children?: React.ReactNode; icon?: React.JSX.Element; id?: string; grow?: '0' | '1' | '2' | '3'; shrink?: '0' | '1' | '2' | '3'; standalone?: boolean; } export declare function InputGroupItem({ 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, icon, id, grow, shrink, standalone, ...rest }: InputGroupItemProps): React.JSX.Element; export {};