import React from 'react'; export interface CustomizeUploadProps { value?: string; onChange?: (value: string) => void; disabled?: boolean; maxCount?: number; maxSize?: number; uniqueKey?: string; hostUrl?: string; actionUrl?: string; platform?: string; placeholder?: string; } declare const CustomizeUpload: React.FC; export default CustomizeUpload;