export interface InputGroupProps { children?: React.ReactNode; label: React.ReactNode; /** * Optional tooltip to provide additional information that is not crucial but may * assist users in filling out the field correctly. */ tooltip?: React.ReactNode; isReadOnly?: boolean; isRequired?: boolean; name?: string; } declare const InputGroup: React.FC; export default InputGroup;