import { FC } from "react"; import "./index.css"; interface WeUIImageUploaderProps { onChange: (file: File | null) => void; title?: string; description?: string; } export declare const WeUIImageUploader: FC; export {};