import React from 'react'; type InputGroupProps = { children: React.ReactNode; fullWidth?: boolean; disabled?: boolean; }; /** * Attached an Input and Button to one another. */ declare const InputGroup: React.ForwardRefExoticComponent>; export default InputGroup;