import * as React from "react"; export type InputPrimitiveProps = React.ComponentProps<"input"> & { type?: string; }; declare function InputPrimitive({ className, type, ...props }: InputPrimitiveProps): React.JSX.Element; export { InputPrimitive };