import { type PropsWithChildren } from 'react'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { DataTestId } from '../../core/types/data-props.js'; import { MaskingProps } from '../../core/types/masking-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; /** * Props for the InputGroup component. * @public */ export interface InputGroupProps extends PropsWithChildren, StylingProps, DataTestId, MaskingProps, BehaviorTrackingProps { } /** * The `InputGroup` component is the outermost layout component of a field * component (for example `TextInput`), providing support for grouping. * @public */ export declare const InputGroup: (props: InputGroupProps & import("react").RefAttributes) => import("react").ReactElement | null;