import { Input, InputProps } from './input'; import { InputIndicatorProps } from './input-indicator'; import { InputGroupRootProps } from './input-group'; import { ClearButtonProps } from './input-clear-button'; declare const InputGroup: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { frameClassName?: string; preventGroupClickSelect?: boolean; } & import('react').RefAttributes> & { Input: import('react').ForwardRefExoticComponent, HTMLInputElement>, "ref">, "children"> & { validationState?: "invalid" | "valid"; isLoading?: boolean; onValueChange?: (value: string) => void; } & import('react').RefAttributes>; Indicator: import('react').ForwardRefExoticComponent, "ref"> & { isValid?: boolean; isLoading?: boolean; } & import('react').RefAttributes>; ClearButton: import('react').ForwardRefExoticComponent>; }; type InputGroupProps = { Root: InputGroupRootProps; Input: InputProps; Indicator: InputIndicatorProps; ClearButton: ClearButtonProps; }; export { Input, InputGroup }; export type { InputGroupProps, InputProps };