import { default as React } from 'react'; export type InputGroupRootProps = React.ComponentPropsWithoutRef<'div'> & { frameClassName?: string; preventGroupClickSelect?: boolean; }; type InputGroupContextValue = { isDirty: boolean; setIsDirty: React.Dispatch>; inputRef: React.RefObject; }; export declare const InputGroupContext: React.Context; /** This is the element that wraps the input element gives the outline effect */ export declare const Root: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { frameClassName?: string; preventGroupClickSelect?: boolean; } & React.RefAttributes>; export {};