import { FileValue, Props as _Props } from "./types";
import { FCC } from "../../types";
export interface Props extends _Props {
value?: FileValue | FileValue[];
onChange: (file: File | File[]) => void;
}
export declare const UploadComponent: FCC<Props>;