import React, { ComponentPropsWithoutRef } from "react"; export type InputGroupProps = ComponentPropsWithoutRef<"div">; export declare const InputGroupInput: React.ForwardRefExoticComponent, HTMLInputElement>, "ref">, "onClick" | "size"> & { startEnhancer?: React.ReactNode; endEnhancer?: React.ReactNode; clearable?: boolean; clearOnEscape?: boolean; inputRef?: React.RefObject | ((instance: HTMLInputElement) => void); onClick?: React.MouseEventHandler; onEnter?: (value: import("..").InputProps["value"]) => unknown; overrides?: { Input?: Partial>; Container?: Partial; }; warning?: boolean; } & import("../..").InputVariantProps & Omit, "size"> & React.RefAttributes> & { EnhancerSeparator: ({ variant, }: Required>>>) => React.JSX.Element; }; /** * Renders a group of inputs stacked vertically. */ export declare const InputGroup: (({ children, className, ...rest }: InputGroupProps) => React.JSX.Element) & { Input: React.ForwardRefExoticComponent, HTMLInputElement>, "ref">, "onClick" | "size"> & { startEnhancer?: React.ReactNode; endEnhancer?: React.ReactNode; clearable?: boolean; clearOnEscape?: boolean; inputRef?: React.RefObject | ((instance: HTMLInputElement) => void); onClick?: React.MouseEventHandler; onEnter?: (value: import("..").InputProps["value"]) => unknown; overrides?: { Input?: Partial>; Container?: Partial; }; warning?: boolean; } & import("../..").InputVariantProps & Omit, "size"> & React.RefAttributes> & { EnhancerSeparator: ({ variant, }: Required>>>) => React.JSX.Element; }; }; //# sourceMappingURL=InputGroup.d.ts.map