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 { } /** * Use the `InputGroup` as the outermost layout wrapper for form field components such as `TextInput` to support horizontal grouping of fields. * @public */ export declare const InputGroup: (props: InputGroupProps & import("react").RefAttributes) => import("react").ReactElement | null; //# sourceMappingURL=InputGroup.d.ts.map