import { ReactNode } from 'react'; import { Asset } from 'react-native-image-picker'; export declare function Upload(props: UploadProps): JSX.Element; export interface UploadProps { style?: any; labelStyle?: any; label?: string; maxNumber?: number; onChange?: (pics: any[]) => void; uploadMethod: (asset: Asset, uuid: string) => Promise; uploadText?: any; description?: string | ReactNode; includeBase64?: boolean; textStyle?: any; descriptionStyle?: any; fileNameStyle?: any; fileSizeStyle?: any; }