import type { FC, InputHTMLAttributes, Ref } from 'react'; import type { VariantProps } from 'class-variance-authority'; import type { TestableProps } from '../../utils/testId'; import { inputVariants } from './classes'; type InputNativeProps = InputHTMLAttributes; type InputVariantsProps = VariantProps; export type InputProps = InputNativeProps & InputVariantsProps & TestableProps & { ref?: Ref; }; export declare const Input: FC; export {};