import * as React from "react";
import { InputProps } from "./Input";
import { ButtonProps } from "./Button";
interface InputGroupProps {
    inputId: string;
    label: string;
    helperText: string;
    submitButtonLabel: string;
    disabled?: boolean;
    inputProps: Omit<InputProps, "disabled" | "id">;
    buttonProps: Omit<ButtonProps, "disabled " | "asChild">;
}
declare const InputGroup: React.FC<InputGroupProps>;
export { InputGroup, InputGroupProps };
//# sourceMappingURL=InputGroup.d.ts.map