import { type ComponentPropsWithRef } from "react"; export interface FileInputProps { error?: string; classNamePrefix?: string; } type Props = FileInputProps & Omit, "type">; declare const FileInput: { ({ error, className, classNamePrefix, ref, disabled, onDragEnter, onDragOver, onDragLeave, onDrop, ...rest }: Props): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export default FileInput;