/// import { H5UploaderProps } from './uploader.h5'; export declare const CLASS_PREFIX = "weda-uploader-pc"; export declare const IMAGE_TYPES: string[]; /** * 上传图片-官方组件 */ export declare function UploaderPC({ layout, className, id, style, title, tips, ...props }: { [x: string]: any; layout: any; className: any; id: any; style: any; title: any; tips: any; }): JSX.Element; export declare function UploaderPCInner(props: any): JSX.Element; export interface TcbImageProps { fileID?: string; isZoom?: boolean; onError?: (e: unknown) => void; imgTypeCls?: string; } export declare const TcbImage: (props: TcbImageProps) => JSX.Element; export interface PropsType extends H5UploaderProps { tips?: string; value: string | string[]; btnTitle?: string; uploadPath?: string; readOnly?: boolean; } export declare function encodeConvert(src: any): any;