import { type PropsWithChildren } from 'react'; import { type DataTestId, type MaskingProps, type StylingProps } from '@dynatrace/strato-components/core'; /** * Props for the InputGroup component. * @public */ export interface InputGroupProps extends PropsWithChildren, StylingProps, DataTestId, MaskingProps { } /** * 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) => React.ReactElement | null;