import { default as React } from 'react';
import { InputProps } from './types.cjs';
export declare const InputGroup: React.ForwardRefExoticComponent<import('../../index.js').WithOptionalChildren & import('../../index.js').DataTestAutoId & {
    id?: string;
    className?: string;
    "data-testid"?: string;
    "data-size"?: import('../../core/types.js').Size;
    errorLabel?: React.ReactNode;
    helpLabel?: React.ReactNode;
    inline?: boolean;
    label: React.ReactNode;
    labelProps?: Omit<import('./types.js').LabelProps, "children">;
    supportLabelProps?: Omit<import('./types.js').SupportLabelProps, "id" | "errorLabel" | "helpLabel">;
    description?: string;
    tooltip?: React.ReactNode;
    style?: React.CSSProperties;
    render?: (props: InputProps) => JSX.Element;
} & React.RefAttributes<HTMLDivElement>>;
