import type { ComponentPropsWithRef, ElementType } from 'react'; export type InputControlProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Container for icons controlling form elements, such as a dropdown icon for a select element. * @docs {@link https://design.visa.com/components/input/?code_library=react | See Docs} * @related select */ declare const InputControl: { ({ className, tag: Tag, ...remainingProps }: InputControlProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default InputControl;