import { VNodeChild } from 'vue'; import { XUploadProps } from '../../basic'; export interface XUploadOssProps extends Omit { /** oss 接收文件最大 大约为50兆, 超过50兆应采取oss ststoken 分片上传 */ maxSize?: number; } declare const __VLS_export: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: import('vue').PublicProps & __VLS_PrettifyLocal<(XUploadOssProps & { modelValue?: MV; }) & { "onUpdate:modelValue"?: ((value: MV | undefined) => any) | undefined; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: {}) => void; attrs: any; slots: { default: () => VNodeChild; tip: () => VNodeChild; }; emit: (event: "update:modelValue", value: MV | undefined) => void; }>) => import('vue').VNode & { __ctx?: NonNullable>; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};