import type { ComponentPropsWithRef, ElementType } from 'react'; export type InputProperties = { /** one-time pass-code style */ otp?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Text fields that enable users to enter free-form content. * @docs {@link https://design.visa.com/components/input/?code_library=react | See Docs} * @related input-container, input-control, input-message * @vgar TODO * @wcag TODO */ declare const Input: { ({ className, otp, tag: Tag, ...remainingProps }: InputProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Input;