upload.vue.d.ts 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. import type { UploadContentProps } from './upload-content';
  2. declare const _default: import("vue").DefineComponent<{
  3. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  4. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  5. new (): any;
  6. readonly prototype: any;
  7. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  8. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  9. new (): any;
  10. readonly prototype: any;
  11. })[], unknown, unknown, () => void, boolean>;
  12. readonly beforeRemove: {
  13. readonly type: import("vue").PropType<(uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => import("../../../utils").Awaitable<boolean>>;
  14. readonly required: false;
  15. readonly validator: ((val: unknown) => boolean) | undefined;
  16. __epPropKey: true;
  17. };
  18. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  19. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  20. new (): any;
  21. readonly prototype: any;
  22. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  23. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  24. new (): any;
  25. readonly prototype: any;
  26. })[], unknown, unknown, () => void, boolean>;
  27. readonly onChange: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  28. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  29. new (): any;
  30. readonly prototype: any;
  31. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  32. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  33. new (): any;
  34. readonly prototype: any;
  35. })[], unknown, unknown, () => void, boolean>;
  36. readonly onPreview: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  37. (): (uploadFile: import("./upload").UploadFile) => void;
  38. new (): any;
  39. readonly prototype: any;
  40. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  41. (): (uploadFile: import("./upload").UploadFile) => void;
  42. new (): any;
  43. readonly prototype: any;
  44. })[], unknown, unknown, () => void, boolean>;
  45. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  46. (): (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  47. new (): any;
  48. readonly prototype: any;
  49. } | ((new (...args: any[]) => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  50. (): (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  51. new (): any;
  52. readonly prototype: any;
  53. })[], unknown, unknown, () => void, boolean>;
  54. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  55. (): (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  56. new (): any;
  57. readonly prototype: any;
  58. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  59. (): (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  60. new (): any;
  61. readonly prototype: any;
  62. })[], unknown, unknown, () => void, boolean>;
  63. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  64. (): (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  65. new (): any;
  66. readonly prototype: any;
  67. } | ((new (...args: any[]) => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  68. (): (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  69. new (): any;
  70. readonly prototype: any;
  71. })[], unknown, unknown, () => void, boolean>;
  72. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  73. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  74. new (): any;
  75. readonly prototype: any;
  76. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  77. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  78. new (): any;
  79. readonly prototype: any;
  80. })[], unknown, unknown, () => void, boolean>;
  81. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  82. readonly headers: {
  83. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  84. readonly required: false;
  85. readonly validator: ((val: unknown) => boolean) | undefined;
  86. __epPropKey: true;
  87. };
  88. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  89. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  90. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  91. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  92. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  93. readonly withCredentials: BooleanConstructor;
  94. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  95. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  96. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  97. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  98. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  99. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  100. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  101. (): import("./upload").UploadRequestHandler;
  102. new (): any;
  103. readonly prototype: any;
  104. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  105. (): import("./upload").UploadRequestHandler;
  106. new (): any;
  107. readonly prototype: any;
  108. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  109. readonly disabled: BooleanConstructor;
  110. readonly limit: NumberConstructor;
  111. }, {
  112. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  113. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  114. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  115. new (): any;
  116. readonly prototype: any;
  117. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  118. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  119. new (): any;
  120. readonly prototype: any;
  121. })[], unknown, unknown, () => void, boolean>;
  122. readonly beforeRemove: {
  123. readonly type: import("vue").PropType<(uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => import("../../../utils").Awaitable<boolean>>;
  124. readonly required: false;
  125. readonly validator: ((val: unknown) => boolean) | undefined;
  126. __epPropKey: true;
  127. };
  128. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  129. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  130. new (): any;
  131. readonly prototype: any;
  132. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  133. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  134. new (): any;
  135. readonly prototype: any;
  136. })[], unknown, unknown, () => void, boolean>;
  137. readonly onChange: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  138. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  139. new (): any;
  140. readonly prototype: any;
  141. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  142. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  143. new (): any;
  144. readonly prototype: any;
  145. })[], unknown, unknown, () => void, boolean>;
  146. readonly onPreview: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  147. (): (uploadFile: import("./upload").UploadFile) => void;
  148. new (): any;
  149. readonly prototype: any;
  150. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  151. (): (uploadFile: import("./upload").UploadFile) => void;
  152. new (): any;
  153. readonly prototype: any;
  154. })[], unknown, unknown, () => void, boolean>;
  155. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  156. (): (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  157. new (): any;
  158. readonly prototype: any;
  159. } | ((new (...args: any[]) => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  160. (): (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  161. new (): any;
  162. readonly prototype: any;
  163. })[], unknown, unknown, () => void, boolean>;
  164. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  165. (): (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  166. new (): any;
  167. readonly prototype: any;
  168. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  169. (): (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  170. new (): any;
  171. readonly prototype: any;
  172. })[], unknown, unknown, () => void, boolean>;
  173. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  174. (): (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  175. new (): any;
  176. readonly prototype: any;
  177. } | ((new (...args: any[]) => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  178. (): (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  179. new (): any;
  180. readonly prototype: any;
  181. })[], unknown, unknown, () => void, boolean>;
  182. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  183. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  184. new (): any;
  185. readonly prototype: any;
  186. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  187. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  188. new (): any;
  189. readonly prototype: any;
  190. })[], unknown, unknown, () => void, boolean>;
  191. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  192. readonly headers: {
  193. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  194. readonly required: false;
  195. readonly validator: ((val: unknown) => boolean) | undefined;
  196. __epPropKey: true;
  197. };
  198. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  199. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  200. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  201. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  202. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  203. readonly withCredentials: BooleanConstructor;
  204. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  205. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  206. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  207. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  208. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  209. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  210. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  211. (): import("./upload").UploadRequestHandler;
  212. new (): any;
  213. readonly prototype: any;
  214. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  215. (): import("./upload").UploadRequestHandler;
  216. new (): any;
  217. readonly prototype: any;
  218. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  219. readonly disabled: BooleanConstructor;
  220. readonly limit: NumberConstructor;
  221. }>> & {
  222. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  223. }>>;
  224. slots: Readonly<{
  225. [name: string]: import("vue").Slot | undefined;
  226. }>;
  227. disabled: import("vue").ComputedRef<boolean>;
  228. uploadRef: import("vue").ShallowRef<({
  229. $: import("vue").ComponentInternalInstance;
  230. $data: {};
  231. $props: Partial<{
  232. readonly type: string;
  233. readonly disabled: boolean;
  234. readonly name: string;
  235. readonly drag: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  236. readonly multiple: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  237. readonly data: Record<string, any>;
  238. readonly onError: (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  239. readonly onProgress: (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  240. readonly action: string;
  241. readonly method: string;
  242. readonly showFileList: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  243. readonly accept: string;
  244. readonly fileList: import("./upload").UploadUserFile[];
  245. readonly autoUpload: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  246. readonly listType: import("../../../utils").EpPropMergeType<StringConstructor, "text" | "picture" | "picture-card", unknown>;
  247. readonly httpRequest: import("./upload").UploadRequestHandler;
  248. readonly withCredentials: boolean;
  249. readonly beforeUpload: (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  250. readonly onRemove: (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  251. readonly onSuccess: (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  252. readonly onExceed: (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  253. readonly onStart: (rawFile: import("./upload").UploadRawFile) => void;
  254. }> & Omit<Readonly<import("vue").ExtractPropTypes<{
  255. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  256. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  257. new (): any;
  258. readonly prototype: any;
  259. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  260. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  261. new (): any;
  262. readonly prototype: any;
  263. })[], unknown, unknown, () => void, boolean>;
  264. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  265. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  266. new (): any;
  267. readonly prototype: any;
  268. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  269. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  270. new (): any;
  271. readonly prototype: any;
  272. })[], unknown, unknown, () => void, boolean>;
  273. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  274. (): (rawFile: import("./upload").UploadRawFile) => void;
  275. new (): any;
  276. readonly prototype: any;
  277. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  278. (): (rawFile: import("./upload").UploadRawFile) => void;
  279. new (): any;
  280. readonly prototype: any;
  281. })[], unknown, unknown, () => void, boolean>;
  282. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  283. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  284. new (): any;
  285. readonly prototype: any;
  286. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  287. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  288. new (): any;
  289. readonly prototype: any;
  290. })[], unknown, unknown, () => void, boolean>;
  291. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  292. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  293. new (): any;
  294. readonly prototype: any;
  295. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  296. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  297. new (): any;
  298. readonly prototype: any;
  299. })[], unknown, unknown, () => void, boolean>;
  300. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  301. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  302. new (): any;
  303. readonly prototype: any;
  304. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  305. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  306. new (): any;
  307. readonly prototype: any;
  308. })[], unknown, unknown, () => void, boolean>;
  309. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  310. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  311. new (): any;
  312. readonly prototype: any;
  313. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  314. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  315. new (): any;
  316. readonly prototype: any;
  317. })[], unknown, unknown, () => void, boolean>;
  318. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  319. readonly headers: {
  320. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  321. readonly required: false;
  322. readonly validator: ((val: unknown) => boolean) | undefined;
  323. __epPropKey: true;
  324. };
  325. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  326. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  327. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  328. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  329. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  330. readonly withCredentials: BooleanConstructor;
  331. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  332. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  333. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  334. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  335. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  336. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  337. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  338. (): import("./upload").UploadRequestHandler;
  339. new (): any;
  340. readonly prototype: any;
  341. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  342. (): import("./upload").UploadRequestHandler;
  343. new (): any;
  344. readonly prototype: any;
  345. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  346. readonly disabled: BooleanConstructor;
  347. readonly limit: NumberConstructor;
  348. }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "name" | "drag" | "multiple" | "data" | "onError" | "onProgress" | "action" | "method" | "showFileList" | "accept" | "fileList" | "autoUpload" | "listType" | "httpRequest" | "withCredentials" | "beforeUpload" | "onRemove" | "onSuccess" | "onExceed" | "onStart">;
  349. $attrs: {
  350. [x: string]: unknown;
  351. };
  352. $refs: {
  353. [x: string]: unknown;
  354. };
  355. $slots: Readonly<{
  356. [name: string]: import("vue").Slot | undefined;
  357. }>;
  358. $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
  359. $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
  360. $emit: (event: string, ...args: any[]) => void;
  361. $el: any;
  362. $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
  363. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  364. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  365. new (): any;
  366. readonly prototype: any;
  367. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  368. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  369. new (): any;
  370. readonly prototype: any;
  371. })[], unknown, unknown, () => void, boolean>;
  372. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  373. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  374. new (): any;
  375. readonly prototype: any;
  376. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  377. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  378. new (): any;
  379. readonly prototype: any;
  380. })[], unknown, unknown, () => void, boolean>;
  381. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  382. (): (rawFile: import("./upload").UploadRawFile) => void;
  383. new (): any;
  384. readonly prototype: any;
  385. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  386. (): (rawFile: import("./upload").UploadRawFile) => void;
  387. new (): any;
  388. readonly prototype: any;
  389. })[], unknown, unknown, () => void, boolean>;
  390. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  391. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  392. new (): any;
  393. readonly prototype: any;
  394. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  395. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  396. new (): any;
  397. readonly prototype: any;
  398. })[], unknown, unknown, () => void, boolean>;
  399. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  400. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  401. new (): any;
  402. readonly prototype: any;
  403. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  404. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  405. new (): any;
  406. readonly prototype: any;
  407. })[], unknown, unknown, () => void, boolean>;
  408. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  409. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  410. new (): any;
  411. readonly prototype: any;
  412. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  413. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  414. new (): any;
  415. readonly prototype: any;
  416. })[], unknown, unknown, () => void, boolean>;
  417. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  418. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  419. new (): any;
  420. readonly prototype: any;
  421. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  422. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  423. new (): any;
  424. readonly prototype: any;
  425. })[], unknown, unknown, () => void, boolean>;
  426. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  427. readonly headers: {
  428. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  429. readonly required: false;
  430. readonly validator: ((val: unknown) => boolean) | undefined;
  431. __epPropKey: true;
  432. };
  433. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  434. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  435. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  436. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  437. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  438. readonly withCredentials: BooleanConstructor;
  439. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  440. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  441. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  442. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  443. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  444. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  445. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  446. (): import("./upload").UploadRequestHandler;
  447. new (): any;
  448. readonly prototype: any;
  449. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  450. (): import("./upload").UploadRequestHandler;
  451. new (): any;
  452. readonly prototype: any;
  453. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  454. readonly disabled: BooleanConstructor;
  455. readonly limit: NumberConstructor;
  456. }>>, {
  457. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  458. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  459. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  460. new (): any;
  461. readonly prototype: any;
  462. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  463. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  464. new (): any;
  465. readonly prototype: any;
  466. })[], unknown, unknown, () => void, boolean>;
  467. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  468. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  469. new (): any;
  470. readonly prototype: any;
  471. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  472. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  473. new (): any;
  474. readonly prototype: any;
  475. })[], unknown, unknown, () => void, boolean>;
  476. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  477. (): (rawFile: import("./upload").UploadRawFile) => void;
  478. new (): any;
  479. readonly prototype: any;
  480. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  481. (): (rawFile: import("./upload").UploadRawFile) => void;
  482. new (): any;
  483. readonly prototype: any;
  484. })[], unknown, unknown, () => void, boolean>;
  485. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  486. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  487. new (): any;
  488. readonly prototype: any;
  489. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  490. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  491. new (): any;
  492. readonly prototype: any;
  493. })[], unknown, unknown, () => void, boolean>;
  494. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  495. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  496. new (): any;
  497. readonly prototype: any;
  498. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  499. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  500. new (): any;
  501. readonly prototype: any;
  502. })[], unknown, unknown, () => void, boolean>;
  503. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  504. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  505. new (): any;
  506. readonly prototype: any;
  507. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  508. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  509. new (): any;
  510. readonly prototype: any;
  511. })[], unknown, unknown, () => void, boolean>;
  512. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  513. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  514. new (): any;
  515. readonly prototype: any;
  516. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  517. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  518. new (): any;
  519. readonly prototype: any;
  520. })[], unknown, unknown, () => void, boolean>;
  521. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  522. readonly headers: {
  523. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  524. readonly required: false;
  525. readonly validator: ((val: unknown) => boolean) | undefined;
  526. __epPropKey: true;
  527. };
  528. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  529. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  530. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  531. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  532. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  533. readonly withCredentials: BooleanConstructor;
  534. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  535. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  536. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  537. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  538. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  539. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  540. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  541. (): import("./upload").UploadRequestHandler;
  542. new (): any;
  543. readonly prototype: any;
  544. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  545. (): import("./upload").UploadRequestHandler;
  546. new (): any;
  547. readonly prototype: any;
  548. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  549. readonly disabled: BooleanConstructor;
  550. readonly limit: NumberConstructor;
  551. }>> & {
  552. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  553. }>>;
  554. ns: {
  555. namespace: import("vue").Ref<string>;
  556. b: (blockSuffix?: string) => string;
  557. e: (element?: string | undefined) => string;
  558. m: (modifier?: string | undefined) => string;
  559. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  560. em: (element?: string | undefined, modifier?: string | undefined) => string;
  561. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  562. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  563. is: {
  564. (name: string, state: boolean | undefined): string;
  565. (name: string): string;
  566. };
  567. cssVar: (object: Record<string, string>) => Record<string, string>;
  568. cssVarName: (name: string) => string;
  569. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  570. cssVarBlockName: (name: string) => string;
  571. };
  572. disabled: import("vue").ComputedRef<boolean>;
  573. requests: import("vue").ShallowRef<Record<string, XMLHttpRequest | Promise<unknown>>>;
  574. inputRef: import("vue").ShallowRef<HTMLInputElement | undefined>;
  575. uploadFiles: (files: File[]) => void;
  576. upload: (rawFile: import("./upload").UploadRawFile) => Promise<void>;
  577. doUpload: (rawFile: import("./upload").UploadRawFile) => void;
  578. handleChange: (e: Event) => void;
  579. handleClick: () => void;
  580. handleKeydown: () => void;
  581. abort: (file?: import("./upload").UploadFile | undefined) => void;
  582. UploadDragger: import("vue").DefineComponent<{
  583. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  584. }, {
  585. COMPONENT_NAME: string;
  586. emit: (event: "file", file: File[]) => void;
  587. uploaderContext: import("element-plus/es/tokens").UploadContext;
  588. ns: {
  589. namespace: import("vue").Ref<string>;
  590. b: (blockSuffix?: string) => string;
  591. e: (element?: string | undefined) => string;
  592. m: (modifier?: string | undefined) => string;
  593. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  594. em: (element?: string | undefined, modifier?: string | undefined) => string;
  595. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  596. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  597. is: {
  598. (name: string, state: boolean | undefined): string;
  599. (name: string): string;
  600. };
  601. cssVar: (object: Record<string, string>) => Record<string, string>;
  602. cssVarName: (name: string) => string;
  603. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  604. cssVarBlockName: (name: string) => string;
  605. };
  606. dragover: import("vue").Ref<boolean>;
  607. disabled: import("vue").ComputedRef<boolean>;
  608. onDrop: (e: DragEvent) => void;
  609. onDragover: () => void;
  610. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
  611. file: (file: File[]) => boolean;
  612. }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  613. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  614. }>> & {
  615. onFile?: ((file: File[]) => any) | undefined;
  616. }, {
  617. readonly disabled: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  618. }>;
  619. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
  620. readonly type: string;
  621. readonly disabled: boolean;
  622. readonly name: string;
  623. readonly drag: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  624. readonly multiple: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  625. readonly data: Record<string, any>;
  626. readonly onError: (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  627. readonly onProgress: (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  628. readonly action: string;
  629. readonly method: string;
  630. readonly showFileList: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  631. readonly accept: string;
  632. readonly fileList: import("./upload").UploadUserFile[];
  633. readonly autoUpload: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  634. readonly listType: import("../../../utils").EpPropMergeType<StringConstructor, "text" | "picture" | "picture-card", unknown>;
  635. readonly httpRequest: import("./upload").UploadRequestHandler;
  636. readonly withCredentials: boolean;
  637. readonly beforeUpload: (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  638. readonly onRemove: (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  639. readonly onSuccess: (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  640. readonly onExceed: (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  641. readonly onStart: (rawFile: import("./upload").UploadRawFile) => void;
  642. }> & {
  643. beforeCreate?: ((() => void) | (() => void)[]) | undefined;
  644. created?: ((() => void) | (() => void)[]) | undefined;
  645. beforeMount?: ((() => void) | (() => void)[]) | undefined;
  646. mounted?: ((() => void) | (() => void)[]) | undefined;
  647. beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
  648. updated?: ((() => void) | (() => void)[]) | undefined;
  649. activated?: ((() => void) | (() => void)[]) | undefined;
  650. deactivated?: ((() => void) | (() => void)[]) | undefined;
  651. beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
  652. beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
  653. destroyed?: ((() => void) | (() => void)[]) | undefined;
  654. unmounted?: ((() => void) | (() => void)[]) | undefined;
  655. renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
  656. renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
  657. errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
  658. };
  659. $forceUpdate: () => void;
  660. $nextTick: typeof import("vue").nextTick;
  661. $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
  662. } & Readonly<import("vue").ExtractPropTypes<{
  663. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  664. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  665. new (): any;
  666. readonly prototype: any;
  667. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  668. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  669. new (): any;
  670. readonly prototype: any;
  671. })[], unknown, unknown, () => void, boolean>;
  672. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  673. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  674. new (): any;
  675. readonly prototype: any;
  676. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  677. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  678. new (): any;
  679. readonly prototype: any;
  680. })[], unknown, unknown, () => void, boolean>;
  681. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  682. (): (rawFile: import("./upload").UploadRawFile) => void;
  683. new (): any;
  684. readonly prototype: any;
  685. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  686. (): (rawFile: import("./upload").UploadRawFile) => void;
  687. new (): any;
  688. readonly prototype: any;
  689. })[], unknown, unknown, () => void, boolean>;
  690. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  691. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  692. new (): any;
  693. readonly prototype: any;
  694. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  695. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  696. new (): any;
  697. readonly prototype: any;
  698. })[], unknown, unknown, () => void, boolean>;
  699. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  700. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  701. new (): any;
  702. readonly prototype: any;
  703. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  704. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  705. new (): any;
  706. readonly prototype: any;
  707. })[], unknown, unknown, () => void, boolean>;
  708. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  709. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  710. new (): any;
  711. readonly prototype: any;
  712. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  713. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  714. new (): any;
  715. readonly prototype: any;
  716. })[], unknown, unknown, () => void, boolean>;
  717. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  718. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  719. new (): any;
  720. readonly prototype: any;
  721. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  722. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  723. new (): any;
  724. readonly prototype: any;
  725. })[], unknown, unknown, () => void, boolean>;
  726. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  727. readonly headers: {
  728. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  729. readonly required: false;
  730. readonly validator: ((val: unknown) => boolean) | undefined;
  731. __epPropKey: true;
  732. };
  733. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  734. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  735. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  736. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  737. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  738. readonly withCredentials: BooleanConstructor;
  739. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  740. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  741. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  742. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  743. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  744. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  745. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  746. (): import("./upload").UploadRequestHandler;
  747. new (): any;
  748. readonly prototype: any;
  749. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  750. (): import("./upload").UploadRequestHandler;
  751. new (): any;
  752. readonly prototype: any;
  753. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  754. readonly disabled: BooleanConstructor;
  755. readonly limit: NumberConstructor;
  756. }>> & import("vue").ShallowUnwrapRef<{
  757. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  758. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  759. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  760. new (): any;
  761. readonly prototype: any;
  762. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  763. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  764. new (): any;
  765. readonly prototype: any;
  766. })[], unknown, unknown, () => void, boolean>;
  767. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  768. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  769. new (): any;
  770. readonly prototype: any;
  771. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  772. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  773. new (): any;
  774. readonly prototype: any;
  775. })[], unknown, unknown, () => void, boolean>;
  776. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  777. (): (rawFile: import("./upload").UploadRawFile) => void;
  778. new (): any;
  779. readonly prototype: any;
  780. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  781. (): (rawFile: import("./upload").UploadRawFile) => void;
  782. new (): any;
  783. readonly prototype: any;
  784. })[], unknown, unknown, () => void, boolean>;
  785. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  786. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  787. new (): any;
  788. readonly prototype: any;
  789. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  790. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  791. new (): any;
  792. readonly prototype: any;
  793. })[], unknown, unknown, () => void, boolean>;
  794. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  795. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  796. new (): any;
  797. readonly prototype: any;
  798. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  799. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  800. new (): any;
  801. readonly prototype: any;
  802. })[], unknown, unknown, () => void, boolean>;
  803. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  804. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  805. new (): any;
  806. readonly prototype: any;
  807. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  808. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  809. new (): any;
  810. readonly prototype: any;
  811. })[], unknown, unknown, () => void, boolean>;
  812. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  813. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  814. new (): any;
  815. readonly prototype: any;
  816. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  817. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  818. new (): any;
  819. readonly prototype: any;
  820. })[], unknown, unknown, () => void, boolean>;
  821. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  822. readonly headers: {
  823. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  824. readonly required: false;
  825. readonly validator: ((val: unknown) => boolean) | undefined;
  826. __epPropKey: true;
  827. };
  828. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  829. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  830. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  831. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  832. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  833. readonly withCredentials: BooleanConstructor;
  834. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  835. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  836. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  837. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  838. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  839. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  840. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  841. (): import("./upload").UploadRequestHandler;
  842. new (): any;
  843. readonly prototype: any;
  844. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  845. (): import("./upload").UploadRequestHandler;
  846. new (): any;
  847. readonly prototype: any;
  848. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  849. readonly disabled: BooleanConstructor;
  850. readonly limit: NumberConstructor;
  851. }>> & {
  852. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  853. }>>;
  854. ns: {
  855. namespace: import("vue").Ref<string>;
  856. b: (blockSuffix?: string) => string;
  857. e: (element?: string | undefined) => string;
  858. m: (modifier?: string | undefined) => string;
  859. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  860. em: (element?: string | undefined, modifier?: string | undefined) => string;
  861. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  862. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  863. is: {
  864. (name: string, state: boolean | undefined): string;
  865. (name: string): string;
  866. };
  867. cssVar: (object: Record<string, string>) => Record<string, string>;
  868. cssVarName: (name: string) => string;
  869. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  870. cssVarBlockName: (name: string) => string;
  871. };
  872. disabled: import("vue").ComputedRef<boolean>;
  873. requests: import("vue").ShallowRef<Record<string, XMLHttpRequest | Promise<unknown>>>;
  874. inputRef: import("vue").ShallowRef<HTMLInputElement | undefined>;
  875. uploadFiles: (files: File[]) => void;
  876. upload: (rawFile: import("./upload").UploadRawFile) => Promise<void>;
  877. doUpload: (rawFile: import("./upload").UploadRawFile) => void;
  878. handleChange: (e: Event) => void;
  879. handleClick: () => void;
  880. handleKeydown: () => void;
  881. abort: (file?: import("./upload").UploadFile | undefined) => void;
  882. UploadDragger: import("vue").DefineComponent<{
  883. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  884. }, {
  885. COMPONENT_NAME: string;
  886. emit: (event: "file", file: File[]) => void;
  887. uploaderContext: import("element-plus/es/tokens").UploadContext;
  888. ns: {
  889. namespace: import("vue").Ref<string>;
  890. b: (blockSuffix?: string) => string;
  891. e: (element?: string | undefined) => string;
  892. m: (modifier?: string | undefined) => string;
  893. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  894. em: (element?: string | undefined, modifier?: string | undefined) => string;
  895. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  896. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  897. is: {
  898. (name: string, state: boolean | undefined): string;
  899. (name: string): string;
  900. };
  901. cssVar: (object: Record<string, string>) => Record<string, string>;
  902. cssVarName: (name: string) => string;
  903. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  904. cssVarBlockName: (name: string) => string;
  905. };
  906. dragover: import("vue").Ref<boolean>;
  907. disabled: import("vue").ComputedRef<boolean>;
  908. onDrop: (e: DragEvent) => void;
  909. onDragover: () => void;
  910. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
  911. file: (file: File[]) => boolean;
  912. }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  913. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  914. }>> & {
  915. onFile?: ((file: File[]) => any) | undefined;
  916. }, {
  917. readonly disabled: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  918. }>;
  919. }> & {} & import("vue").ComponentCustomProperties) | undefined>;
  920. abort: (file: import("./upload").UploadFile) => void;
  921. submit: () => void;
  922. clearFiles: (states?: import("./upload").UploadStatus[]) => void;
  923. uploadFiles: import("vue").Ref<{
  924. name: string;
  925. percentage?: number | undefined;
  926. status: import("./upload").UploadStatus;
  927. size?: number | undefined;
  928. response?: unknown;
  929. uid: number;
  930. url?: string | undefined;
  931. raw?: {
  932. uid: number;
  933. readonly lastModified: number;
  934. readonly name: string;
  935. readonly webkitRelativePath: string;
  936. readonly size: number;
  937. readonly type: string;
  938. arrayBuffer: () => Promise<ArrayBuffer>;
  939. slice: (start?: number | undefined, end?: number | undefined, contentType?: string | undefined) => Blob;
  940. stream: () => ReadableStream<any>;
  941. text: () => Promise<string>;
  942. } | undefined;
  943. }[]> | import("vue").WritableComputedRef<import("./upload").UploadFiles>;
  944. handleStart: (rawFile: import("./upload").UploadRawFile) => void;
  945. handleError: (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  946. handleRemove: (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  947. handleSuccess: (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  948. handleProgress: (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  949. isPictureCard: import("vue").ComputedRef<boolean>;
  950. uploadContentProps: import("vue").ComputedRef<UploadContentProps>;
  951. UploadList: import("vue").DefineComponent<{
  952. readonly files: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadFiles) | (() => import("./upload").UploadFiles) | ((new (...args: any[]) => import("./upload").UploadFiles) | (() => import("./upload").UploadFiles))[], unknown, unknown, () => never[], boolean>;
  953. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  954. readonly handlePreview: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  955. (): (uploadFile: import("./upload").UploadFile) => void;
  956. new (): any;
  957. readonly prototype: any;
  958. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  959. (): (uploadFile: import("./upload").UploadFile) => void;
  960. new (): any;
  961. readonly prototype: any;
  962. })[], unknown, unknown, () => void, boolean>;
  963. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  964. }, {
  965. emit: (event: "remove", file: import("./upload").UploadFile) => void;
  966. t: import("element-plus/es/hooks").Translator;
  967. nsUpload: {
  968. namespace: import("vue").Ref<string>;
  969. b: (blockSuffix?: string) => string;
  970. e: (element?: string | undefined) => string;
  971. m: (modifier?: string | undefined) => string;
  972. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  973. em: (element?: string | undefined, modifier?: string | undefined) => string;
  974. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  975. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  976. is: {
  977. (name: string, state: boolean | undefined): string;
  978. (name: string): string;
  979. };
  980. cssVar: (object: Record<string, string>) => Record<string, string>;
  981. cssVarName: (name: string) => string;
  982. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  983. cssVarBlockName: (name: string) => string;
  984. };
  985. nsIcon: {
  986. namespace: import("vue").Ref<string>;
  987. b: (blockSuffix?: string) => string;
  988. e: (element?: string | undefined) => string;
  989. m: (modifier?: string | undefined) => string;
  990. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  991. em: (element?: string | undefined, modifier?: string | undefined) => string;
  992. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  993. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  994. is: {
  995. (name: string, state: boolean | undefined): string;
  996. (name: string): string;
  997. };
  998. cssVar: (object: Record<string, string>) => Record<string, string>;
  999. cssVarName: (name: string) => string;
  1000. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  1001. cssVarBlockName: (name: string) => string;
  1002. };
  1003. nsList: {
  1004. namespace: import("vue").Ref<string>;
  1005. b: (blockSuffix?: string) => string;
  1006. e: (element?: string | undefined) => string;
  1007. m: (modifier?: string | undefined) => string;
  1008. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  1009. em: (element?: string | undefined, modifier?: string | undefined) => string;
  1010. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  1011. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  1012. is: {
  1013. (name: string, state: boolean | undefined): string;
  1014. (name: string): string;
  1015. };
  1016. cssVar: (object: Record<string, string>) => Record<string, string>;
  1017. cssVarName: (name: string) => string;
  1018. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  1019. cssVarBlockName: (name: string) => string;
  1020. };
  1021. disabled: import("vue").ComputedRef<boolean>;
  1022. focusing: import("vue").Ref<boolean>;
  1023. handleRemove: (file: import("./upload").UploadFile) => void;
  1024. ElIcon: import("../../../utils").SFCWithInstall<import("vue").DefineComponent<{
  1025. readonly size: {
  1026. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
  1027. readonly required: false;
  1028. readonly validator: ((val: unknown) => boolean) | undefined;
  1029. __epPropKey: true;
  1030. };
  1031. readonly color: {
  1032. readonly type: import("vue").PropType<string>;
  1033. readonly required: false;
  1034. readonly validator: ((val: unknown) => boolean) | undefined;
  1035. __epPropKey: true;
  1036. };
  1037. }, {
  1038. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  1039. readonly size: {
  1040. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
  1041. readonly required: false;
  1042. readonly validator: ((val: unknown) => boolean) | undefined;
  1043. __epPropKey: true;
  1044. };
  1045. readonly color: {
  1046. readonly type: import("vue").PropType<string>;
  1047. readonly required: false;
  1048. readonly validator: ((val: unknown) => boolean) | undefined;
  1049. __epPropKey: true;
  1050. };
  1051. }>> & {
  1052. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  1053. }>>;
  1054. ns: {
  1055. namespace: import("vue").Ref<string>;
  1056. b: (blockSuffix?: string) => string;
  1057. e: (element?: string | undefined) => string;
  1058. m: (modifier?: string | undefined) => string;
  1059. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  1060. em: (element?: string | undefined, modifier?: string | undefined) => string;
  1061. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  1062. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  1063. is: {
  1064. (name: string, state: boolean | undefined): string;
  1065. (name: string): string;
  1066. };
  1067. cssVar: (object: Record<string, string>) => Record<string, string>;
  1068. cssVarName: (name: string) => string;
  1069. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  1070. cssVarBlockName: (name: string) => string;
  1071. };
  1072. style: import("vue").ComputedRef<import("vue").CSSProperties>;
  1073. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  1074. readonly size: {
  1075. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
  1076. readonly required: false;
  1077. readonly validator: ((val: unknown) => boolean) | undefined;
  1078. __epPropKey: true;
  1079. };
  1080. readonly color: {
  1081. readonly type: import("vue").PropType<string>;
  1082. readonly required: false;
  1083. readonly validator: ((val: unknown) => boolean) | undefined;
  1084. __epPropKey: true;
  1085. };
  1086. }>>, {}>> & Record<string, any>;
  1087. Check: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
  1088. CircleCheck: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
  1089. Close: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
  1090. Delete: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
  1091. Document: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
  1092. ZoomIn: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
  1093. ElProgress: import("../../../utils").SFCWithInstall<import("vue").DefineComponent<{
  1094. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, "circle" | "line" | "dashboard", unknown, "line", boolean>;
  1095. readonly percentage: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
  1096. readonly status: import("../../../utils").EpPropFinalized<StringConstructor, "" | "success" | "warning" | "exception", unknown, "", boolean>;
  1097. readonly indeterminate: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1098. readonly duration: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
  1099. readonly strokeWidth: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 6, boolean>;
  1100. readonly strokeLinecap: import("../../../utils").EpPropFinalized<(new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square") | ((new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square"))[], unknown, unknown, "round", boolean>;
  1101. readonly textInside: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1102. readonly width: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 126, boolean>;
  1103. readonly showText: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1104. readonly color: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]) | ((new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]))[], unknown, unknown, "", boolean>;
  1105. readonly format: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("../..").ProgressFn) | (() => import("../..").ProgressFn) | {
  1106. (): import("../..").ProgressFn;
  1107. new (): any;
  1108. readonly prototype: any;
  1109. } | ((new (...args: any[]) => import("../..").ProgressFn) | (() => import("../..").ProgressFn) | {
  1110. (): import("../..").ProgressFn;
  1111. new (): any;
  1112. readonly prototype: any;
  1113. })[], unknown, unknown, (percentage: number) => string, boolean>;
  1114. }, {
  1115. STATUS_COLOR_MAP: Record<string, string>;
  1116. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  1117. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, "circle" | "line" | "dashboard", unknown, "line", boolean>;
  1118. readonly percentage: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
  1119. readonly status: import("../../../utils").EpPropFinalized<StringConstructor, "" | "success" | "warning" | "exception", unknown, "", boolean>;
  1120. readonly indeterminate: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1121. readonly duration: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
  1122. readonly strokeWidth: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 6, boolean>;
  1123. readonly strokeLinecap: import("../../../utils").EpPropFinalized<(new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square") | ((new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square"))[], unknown, unknown, "round", boolean>;
  1124. readonly textInside: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1125. readonly width: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 126, boolean>;
  1126. readonly showText: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1127. readonly color: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]) | ((new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]))[], unknown, unknown, "", boolean>;
  1128. readonly format: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("../..").ProgressFn) | (() => import("../..").ProgressFn) | {
  1129. (): import("../..").ProgressFn;
  1130. new (): any;
  1131. readonly prototype: any;
  1132. } | ((new (...args: any[]) => import("../..").ProgressFn) | (() => import("../..").ProgressFn) | {
  1133. (): import("../..").ProgressFn;
  1134. new (): any;
  1135. readonly prototype: any;
  1136. })[], unknown, unknown, (percentage: number) => string, boolean>;
  1137. }>> & {
  1138. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  1139. }>>;
  1140. ns: {
  1141. namespace: import("vue").Ref<string>;
  1142. b: (blockSuffix?: string) => string;
  1143. e: (element?: string | undefined) => string;
  1144. m: (modifier?: string | undefined) => string;
  1145. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  1146. em: (element?: string | undefined, modifier?: string | undefined) => string;
  1147. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  1148. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  1149. is: {
  1150. (name: string, state: boolean | undefined): string;
  1151. (name: string): string;
  1152. };
  1153. cssVar: (object: Record<string, string>) => Record<string, string>;
  1154. cssVarName: (name: string) => string;
  1155. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  1156. cssVarBlockName: (name: string) => string;
  1157. };
  1158. barStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
  1159. relativeStrokeWidth: import("vue").ComputedRef<string>;
  1160. radius: import("vue").ComputedRef<number>;
  1161. trackPath: import("vue").ComputedRef<string>;
  1162. perimeter: import("vue").ComputedRef<number>;
  1163. rate: import("vue").ComputedRef<1 | 0.75>;
  1164. strokeDashoffset: import("vue").ComputedRef<string>;
  1165. trailPathStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
  1166. circlePathStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
  1167. stroke: import("vue").ComputedRef<string>;
  1168. statusIcon: import("vue").ComputedRef<import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
  1169. progressTextSize: import("vue").ComputedRef<number>;
  1170. content: import("vue").ComputedRef<string>;
  1171. getColors: (color: import("../..").ProgressColor[]) => import("../..").ProgressColor[];
  1172. getCurrentColor: (percentage: number) => string;
  1173. ElIcon: import("../../../utils").SFCWithInstall<import("vue").DefineComponent<{
  1174. readonly size: {
  1175. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
  1176. readonly required: false;
  1177. readonly validator: ((val: unknown) => boolean) | undefined;
  1178. __epPropKey: true;
  1179. };
  1180. readonly color: {
  1181. readonly type: import("vue").PropType<string>;
  1182. readonly required: false;
  1183. readonly validator: ((val: unknown) => boolean) | undefined;
  1184. __epPropKey: true;
  1185. };
  1186. }, {
  1187. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  1188. readonly size: {
  1189. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
  1190. readonly required: false;
  1191. readonly validator: ((val: unknown) => boolean) | undefined;
  1192. __epPropKey: true;
  1193. };
  1194. readonly color: {
  1195. readonly type: import("vue").PropType<string>;
  1196. readonly required: false;
  1197. readonly validator: ((val: unknown) => boolean) | undefined;
  1198. __epPropKey: true;
  1199. };
  1200. }>> & {
  1201. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  1202. }>>;
  1203. ns: {
  1204. namespace: import("vue").Ref<string>;
  1205. b: (blockSuffix?: string) => string;
  1206. e: (element?: string | undefined) => string;
  1207. m: (modifier?: string | undefined) => string;
  1208. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  1209. em: (element?: string | undefined, modifier?: string | undefined) => string;
  1210. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  1211. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  1212. is: {
  1213. (name: string, state: boolean | undefined): string;
  1214. (name: string): string;
  1215. };
  1216. cssVar: (object: Record<string, string>) => Record<string, string>;
  1217. cssVarName: (name: string) => string;
  1218. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  1219. cssVarBlockName: (name: string) => string;
  1220. };
  1221. style: import("vue").ComputedRef<import("vue").CSSProperties>;
  1222. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  1223. readonly size: {
  1224. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
  1225. readonly required: false;
  1226. readonly validator: ((val: unknown) => boolean) | undefined;
  1227. __epPropKey: true;
  1228. };
  1229. readonly color: {
  1230. readonly type: import("vue").PropType<string>;
  1231. readonly required: false;
  1232. readonly validator: ((val: unknown) => boolean) | undefined;
  1233. __epPropKey: true;
  1234. };
  1235. }>>, {}>> & Record<string, any>;
  1236. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  1237. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, "circle" | "line" | "dashboard", unknown, "line", boolean>;
  1238. readonly percentage: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
  1239. readonly status: import("../../../utils").EpPropFinalized<StringConstructor, "" | "success" | "warning" | "exception", unknown, "", boolean>;
  1240. readonly indeterminate: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1241. readonly duration: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
  1242. readonly strokeWidth: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 6, boolean>;
  1243. readonly strokeLinecap: import("../../../utils").EpPropFinalized<(new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square") | ((new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square"))[], unknown, unknown, "round", boolean>;
  1244. readonly textInside: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1245. readonly width: import("../../../utils").EpPropFinalized<NumberConstructor, unknown, unknown, 126, boolean>;
  1246. readonly showText: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1247. readonly color: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]) | ((new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]))[], unknown, unknown, "", boolean>;
  1248. readonly format: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("../..").ProgressFn) | (() => import("../..").ProgressFn) | {
  1249. (): import("../..").ProgressFn;
  1250. new (): any;
  1251. readonly prototype: any;
  1252. } | ((new (...args: any[]) => import("../..").ProgressFn) | (() => import("../..").ProgressFn) | {
  1253. (): import("../..").ProgressFn;
  1254. new (): any;
  1255. readonly prototype: any;
  1256. })[], unknown, unknown, (percentage: number) => string, boolean>;
  1257. }>>, {
  1258. readonly type: import("../../../utils").EpPropMergeType<StringConstructor, "circle" | "line" | "dashboard", unknown>;
  1259. readonly color: import("../../../utils").EpPropMergeType<(new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]) | ((new (...args: any[]) => (string | import("../..").ProgressFn | import("../..").ProgressColor[]) & {}) | (() => string | import("../..").ProgressFn | import("../..").ProgressColor[]))[], unknown, unknown>;
  1260. readonly width: number;
  1261. readonly strokeLinecap: import("../../../utils").EpPropMergeType<(new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square") | ((new (...args: any[]) => ("round" | "inherit" | "butt" | "square") & {}) | (() => "round" | "inherit" | "butt" | "square"))[], unknown, unknown>;
  1262. readonly strokeWidth: number;
  1263. readonly indeterminate: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1264. readonly format: import("../..").ProgressFn;
  1265. readonly percentage: number;
  1266. readonly status: import("../../../utils").EpPropMergeType<StringConstructor, "" | "success" | "warning" | "exception", unknown>;
  1267. readonly duration: number;
  1268. readonly textInside: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1269. readonly showText: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1270. }>> & Record<string, any>;
  1271. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
  1272. remove: (file: import("./upload").UploadFile) => boolean;
  1273. }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  1274. readonly files: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadFiles) | (() => import("./upload").UploadFiles) | ((new (...args: any[]) => import("./upload").UploadFiles) | (() => import("./upload").UploadFiles))[], unknown, unknown, () => never[], boolean>;
  1275. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1276. readonly handlePreview: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  1277. (): (uploadFile: import("./upload").UploadFile) => void;
  1278. new (): any;
  1279. readonly prototype: any;
  1280. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  1281. (): (uploadFile: import("./upload").UploadFile) => void;
  1282. new (): any;
  1283. readonly prototype: any;
  1284. })[], unknown, unknown, () => void, boolean>;
  1285. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  1286. }>> & {
  1287. onRemove?: ((file: import("./upload").UploadFile) => any) | undefined;
  1288. }, {
  1289. readonly disabled: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1290. readonly listType: import("../../../utils").EpPropMergeType<StringConstructor, "text" | "picture" | "picture-card", unknown>;
  1291. readonly files: import("./upload").UploadFiles;
  1292. readonly handlePreview: (uploadFile: import("./upload").UploadFile) => void;
  1293. }>;
  1294. UploadContent: import("vue").DefineComponent<{
  1295. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1296. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1297. new (): any;
  1298. readonly prototype: any;
  1299. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1300. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1301. new (): any;
  1302. readonly prototype: any;
  1303. })[], unknown, unknown, () => void, boolean>;
  1304. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  1305. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  1306. new (): any;
  1307. readonly prototype: any;
  1308. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  1309. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  1310. new (): any;
  1311. readonly prototype: any;
  1312. })[], unknown, unknown, () => void, boolean>;
  1313. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  1314. (): (rawFile: import("./upload").UploadRawFile) => void;
  1315. new (): any;
  1316. readonly prototype: any;
  1317. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  1318. (): (rawFile: import("./upload").UploadRawFile) => void;
  1319. new (): any;
  1320. readonly prototype: any;
  1321. })[], unknown, unknown, () => void, boolean>;
  1322. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  1323. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  1324. new (): any;
  1325. readonly prototype: any;
  1326. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  1327. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  1328. new (): any;
  1329. readonly prototype: any;
  1330. })[], unknown, unknown, () => void, boolean>;
  1331. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  1332. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  1333. new (): any;
  1334. readonly prototype: any;
  1335. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  1336. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  1337. new (): any;
  1338. readonly prototype: any;
  1339. })[], unknown, unknown, () => void, boolean>;
  1340. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  1341. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  1342. new (): any;
  1343. readonly prototype: any;
  1344. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  1345. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  1346. new (): any;
  1347. readonly prototype: any;
  1348. })[], unknown, unknown, () => void, boolean>;
  1349. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1350. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1351. new (): any;
  1352. readonly prototype: any;
  1353. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1354. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1355. new (): any;
  1356. readonly prototype: any;
  1357. })[], unknown, unknown, () => void, boolean>;
  1358. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  1359. readonly headers: {
  1360. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  1361. readonly required: false;
  1362. readonly validator: ((val: unknown) => boolean) | undefined;
  1363. __epPropKey: true;
  1364. };
  1365. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  1366. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  1367. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1368. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  1369. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1370. readonly withCredentials: BooleanConstructor;
  1371. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1372. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  1373. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  1374. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  1375. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1376. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  1377. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1378. (): import("./upload").UploadRequestHandler;
  1379. new (): any;
  1380. readonly prototype: any;
  1381. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1382. (): import("./upload").UploadRequestHandler;
  1383. new (): any;
  1384. readonly prototype: any;
  1385. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  1386. readonly disabled: BooleanConstructor;
  1387. readonly limit: NumberConstructor;
  1388. }, {
  1389. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  1390. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1391. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1392. new (): any;
  1393. readonly prototype: any;
  1394. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1395. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1396. new (): any;
  1397. readonly prototype: any;
  1398. })[], unknown, unknown, () => void, boolean>;
  1399. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  1400. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  1401. new (): any;
  1402. readonly prototype: any;
  1403. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  1404. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  1405. new (): any;
  1406. readonly prototype: any;
  1407. })[], unknown, unknown, () => void, boolean>;
  1408. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  1409. (): (rawFile: import("./upload").UploadRawFile) => void;
  1410. new (): any;
  1411. readonly prototype: any;
  1412. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  1413. (): (rawFile: import("./upload").UploadRawFile) => void;
  1414. new (): any;
  1415. readonly prototype: any;
  1416. })[], unknown, unknown, () => void, boolean>;
  1417. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  1418. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  1419. new (): any;
  1420. readonly prototype: any;
  1421. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  1422. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  1423. new (): any;
  1424. readonly prototype: any;
  1425. })[], unknown, unknown, () => void, boolean>;
  1426. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  1427. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  1428. new (): any;
  1429. readonly prototype: any;
  1430. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  1431. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  1432. new (): any;
  1433. readonly prototype: any;
  1434. })[], unknown, unknown, () => void, boolean>;
  1435. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  1436. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  1437. new (): any;
  1438. readonly prototype: any;
  1439. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  1440. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  1441. new (): any;
  1442. readonly prototype: any;
  1443. })[], unknown, unknown, () => void, boolean>;
  1444. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1445. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1446. new (): any;
  1447. readonly prototype: any;
  1448. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1449. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1450. new (): any;
  1451. readonly prototype: any;
  1452. })[], unknown, unknown, () => void, boolean>;
  1453. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  1454. readonly headers: {
  1455. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  1456. readonly required: false;
  1457. readonly validator: ((val: unknown) => boolean) | undefined;
  1458. __epPropKey: true;
  1459. };
  1460. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  1461. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  1462. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1463. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  1464. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1465. readonly withCredentials: BooleanConstructor;
  1466. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1467. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  1468. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  1469. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  1470. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1471. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  1472. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1473. (): import("./upload").UploadRequestHandler;
  1474. new (): any;
  1475. readonly prototype: any;
  1476. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1477. (): import("./upload").UploadRequestHandler;
  1478. new (): any;
  1479. readonly prototype: any;
  1480. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  1481. readonly disabled: BooleanConstructor;
  1482. readonly limit: NumberConstructor;
  1483. }>> & {
  1484. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  1485. }>>;
  1486. ns: {
  1487. namespace: import("vue").Ref<string>;
  1488. b: (blockSuffix?: string) => string;
  1489. e: (element?: string | undefined) => string;
  1490. m: (modifier?: string | undefined) => string;
  1491. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  1492. em: (element?: string | undefined, modifier?: string | undefined) => string;
  1493. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  1494. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  1495. is: {
  1496. (name: string, state: boolean | undefined): string;
  1497. (name: string): string;
  1498. };
  1499. cssVar: (object: Record<string, string>) => Record<string, string>;
  1500. cssVarName: (name: string) => string;
  1501. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  1502. cssVarBlockName: (name: string) => string;
  1503. };
  1504. disabled: import("vue").ComputedRef<boolean>;
  1505. requests: import("vue").ShallowRef<Record<string, XMLHttpRequest | Promise<unknown>>>;
  1506. inputRef: import("vue").ShallowRef<HTMLInputElement | undefined>;
  1507. uploadFiles: (files: File[]) => void;
  1508. upload: (rawFile: import("./upload").UploadRawFile) => Promise<void>;
  1509. doUpload: (rawFile: import("./upload").UploadRawFile) => void;
  1510. handleChange: (e: Event) => void;
  1511. handleClick: () => void;
  1512. handleKeydown: () => void;
  1513. abort: (file?: import("./upload").UploadFile | undefined) => void;
  1514. UploadDragger: import("vue").DefineComponent<{
  1515. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1516. }, {
  1517. COMPONENT_NAME: string;
  1518. emit: (event: "file", file: File[]) => void;
  1519. uploaderContext: import("element-plus/es/tokens").UploadContext;
  1520. ns: {
  1521. namespace: import("vue").Ref<string>;
  1522. b: (blockSuffix?: string) => string;
  1523. e: (element?: string | undefined) => string;
  1524. m: (modifier?: string | undefined) => string;
  1525. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  1526. em: (element?: string | undefined, modifier?: string | undefined) => string;
  1527. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  1528. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  1529. is: {
  1530. (name: string, state: boolean | undefined): string;
  1531. (name: string): string;
  1532. };
  1533. cssVar: (object: Record<string, string>) => Record<string, string>;
  1534. cssVarName: (name: string) => string;
  1535. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  1536. cssVarBlockName: (name: string) => string;
  1537. };
  1538. dragover: import("vue").Ref<boolean>;
  1539. disabled: import("vue").ComputedRef<boolean>;
  1540. onDrop: (e: DragEvent) => void;
  1541. onDragover: () => void;
  1542. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
  1543. file: (file: File[]) => boolean;
  1544. }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  1545. readonly disabled: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1546. }>> & {
  1547. onFile?: ((file: File[]) => any) | undefined;
  1548. }, {
  1549. readonly disabled: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1550. }>;
  1551. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  1552. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1553. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1554. new (): any;
  1555. readonly prototype: any;
  1556. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1557. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1558. new (): any;
  1559. readonly prototype: any;
  1560. })[], unknown, unknown, () => void, boolean>;
  1561. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  1562. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  1563. new (): any;
  1564. readonly prototype: any;
  1565. } | ((new (...args: any[]) => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | (() => (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void) | {
  1566. (): (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  1567. new (): any;
  1568. readonly prototype: any;
  1569. })[], unknown, unknown, () => void, boolean>;
  1570. readonly onStart: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  1571. (): (rawFile: import("./upload").UploadRawFile) => void;
  1572. new (): any;
  1573. readonly prototype: any;
  1574. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => void) | (() => (rawFile: import("./upload").UploadRawFile) => void) | {
  1575. (): (rawFile: import("./upload").UploadRawFile) => void;
  1576. new (): any;
  1577. readonly prototype: any;
  1578. })[], unknown, unknown, () => void, boolean>;
  1579. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  1580. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  1581. new (): any;
  1582. readonly prototype: any;
  1583. } | ((new (...args: any[]) => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | (() => (response: any, rawFile: import("./upload").UploadRawFile) => unknown) | {
  1584. (): (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  1585. new (): any;
  1586. readonly prototype: any;
  1587. })[], unknown, unknown, () => void, boolean>;
  1588. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  1589. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  1590. new (): any;
  1591. readonly prototype: any;
  1592. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | (() => (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void) | {
  1593. (): (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  1594. new (): any;
  1595. readonly prototype: any;
  1596. })[], unknown, unknown, () => void, boolean>;
  1597. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  1598. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  1599. new (): any;
  1600. readonly prototype: any;
  1601. } | ((new (...args: any[]) => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | (() => (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void) | {
  1602. (): (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  1603. new (): any;
  1604. readonly prototype: any;
  1605. })[], unknown, unknown, () => void, boolean>;
  1606. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1607. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1608. new (): any;
  1609. readonly prototype: any;
  1610. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1611. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1612. new (): any;
  1613. readonly prototype: any;
  1614. })[], unknown, unknown, () => void, boolean>;
  1615. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  1616. readonly headers: {
  1617. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  1618. readonly required: false;
  1619. readonly validator: ((val: unknown) => boolean) | undefined;
  1620. __epPropKey: true;
  1621. };
  1622. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  1623. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  1624. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1625. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  1626. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1627. readonly withCredentials: BooleanConstructor;
  1628. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1629. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  1630. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  1631. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  1632. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1633. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  1634. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1635. (): import("./upload").UploadRequestHandler;
  1636. new (): any;
  1637. readonly prototype: any;
  1638. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1639. (): import("./upload").UploadRequestHandler;
  1640. new (): any;
  1641. readonly prototype: any;
  1642. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  1643. readonly disabled: BooleanConstructor;
  1644. readonly limit: NumberConstructor;
  1645. }>>, {
  1646. readonly type: string;
  1647. readonly disabled: boolean;
  1648. readonly name: string;
  1649. readonly drag: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1650. readonly multiple: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1651. readonly data: Record<string, any>;
  1652. readonly onError: (err: import("./ajax").UploadAjaxError, rawFile: import("./upload").UploadRawFile) => void;
  1653. readonly onProgress: (evt: import("./upload").UploadProgressEvent, rawFile: import("./upload").UploadRawFile) => void;
  1654. readonly action: string;
  1655. readonly method: string;
  1656. readonly showFileList: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1657. readonly accept: string;
  1658. readonly fileList: import("./upload").UploadUserFile[];
  1659. readonly autoUpload: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1660. readonly listType: import("../../../utils").EpPropMergeType<StringConstructor, "text" | "picture" | "picture-card", unknown>;
  1661. readonly httpRequest: import("./upload").UploadRequestHandler;
  1662. readonly withCredentials: boolean;
  1663. readonly beforeUpload: (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1664. readonly onRemove: (file: import("./upload").UploadFile | import("./upload").UploadRawFile, rawFile?: import("./upload").UploadRawFile | undefined) => void;
  1665. readonly onSuccess: (response: any, rawFile: import("./upload").UploadRawFile) => unknown;
  1666. readonly onExceed: (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1667. readonly onStart: (rawFile: import("./upload").UploadRawFile) => void;
  1668. }>;
  1669. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  1670. readonly beforeUpload: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1671. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1672. new (): any;
  1673. readonly prototype: any;
  1674. } | ((new (...args: any[]) => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | (() => (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>) | {
  1675. (): (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1676. new (): any;
  1677. readonly prototype: any;
  1678. })[], unknown, unknown, () => void, boolean>;
  1679. readonly beforeRemove: {
  1680. readonly type: import("vue").PropType<(uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => import("../../../utils").Awaitable<boolean>>;
  1681. readonly required: false;
  1682. readonly validator: ((val: unknown) => boolean) | undefined;
  1683. __epPropKey: true;
  1684. };
  1685. readonly onRemove: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1686. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1687. new (): any;
  1688. readonly prototype: any;
  1689. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1690. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1691. new (): any;
  1692. readonly prototype: any;
  1693. })[], unknown, unknown, () => void, boolean>;
  1694. readonly onChange: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1695. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1696. new (): any;
  1697. readonly prototype: any;
  1698. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1699. (): (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1700. new (): any;
  1701. readonly prototype: any;
  1702. })[], unknown, unknown, () => void, boolean>;
  1703. readonly onPreview: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  1704. (): (uploadFile: import("./upload").UploadFile) => void;
  1705. new (): any;
  1706. readonly prototype: any;
  1707. } | ((new (...args: any[]) => (uploadFile: import("./upload").UploadFile) => void) | (() => (uploadFile: import("./upload").UploadFile) => void) | {
  1708. (): (uploadFile: import("./upload").UploadFile) => void;
  1709. new (): any;
  1710. readonly prototype: any;
  1711. })[], unknown, unknown, () => void, boolean>;
  1712. readonly onSuccess: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1713. (): (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1714. new (): any;
  1715. readonly prototype: any;
  1716. } | ((new (...args: any[]) => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1717. (): (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1718. new (): any;
  1719. readonly prototype: any;
  1720. })[], unknown, unknown, () => void, boolean>;
  1721. readonly onProgress: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1722. (): (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1723. new (): any;
  1724. readonly prototype: any;
  1725. } | ((new (...args: any[]) => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1726. (): (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1727. new (): any;
  1728. readonly prototype: any;
  1729. })[], unknown, unknown, () => void, boolean>;
  1730. readonly onError: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1731. (): (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1732. new (): any;
  1733. readonly prototype: any;
  1734. } | ((new (...args: any[]) => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | (() => (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void) | {
  1735. (): (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1736. new (): any;
  1737. readonly prototype: any;
  1738. })[], unknown, unknown, () => void, boolean>;
  1739. readonly onExceed: import("../../../utils").EpPropFinalized<(new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1740. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1741. new (): any;
  1742. readonly prototype: any;
  1743. } | ((new (...args: any[]) => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | (() => (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void) | {
  1744. (): (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1745. new (): any;
  1746. readonly prototype: any;
  1747. })[], unknown, unknown, () => void, boolean>;
  1748. readonly action: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "#", boolean>;
  1749. readonly headers: {
  1750. readonly type: import("vue").PropType<import("../../../utils").EpPropMergeType<(new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers) | ((new (...args: any[]) => Record<string, any> | Headers) | (() => Record<string, any> | Headers))[], unknown, unknown>>;
  1751. readonly required: false;
  1752. readonly validator: ((val: unknown) => boolean) | undefined;
  1753. __epPropKey: true;
  1754. };
  1755. readonly method: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "post", boolean>;
  1756. readonly data: import("../../../utils").EpPropFinalized<ObjectConstructor, unknown, unknown, () => import("../../../utils").Mutable<{}>, boolean>;
  1757. readonly multiple: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1758. readonly name: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "file", boolean>;
  1759. readonly drag: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
  1760. readonly withCredentials: BooleanConstructor;
  1761. readonly showFileList: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1762. readonly accept: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  1763. readonly type: import("../../../utils").EpPropFinalized<StringConstructor, unknown, unknown, "select", boolean>;
  1764. readonly fileList: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]) | ((new (...args: any[]) => import("./upload").UploadUserFile[]) | (() => import("./upload").UploadUserFile[]))[], unknown, unknown, () => [], boolean>;
  1765. readonly autoUpload: import("../../../utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  1766. readonly listType: import("../../../utils").EpPropFinalized<StringConstructor, "text" | "picture" | "picture-card", unknown, "text", boolean>;
  1767. readonly httpRequest: import("../../../utils").EpPropFinalized<(new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1768. (): import("./upload").UploadRequestHandler;
  1769. new (): any;
  1770. readonly prototype: any;
  1771. } | ((new (...args: any[]) => import("./upload").UploadRequestHandler) | (() => import("./upload").UploadRequestHandler) | {
  1772. (): import("./upload").UploadRequestHandler;
  1773. new (): any;
  1774. readonly prototype: any;
  1775. })[], unknown, unknown, import("./upload").UploadRequestHandler, boolean>;
  1776. readonly disabled: BooleanConstructor;
  1777. readonly limit: NumberConstructor;
  1778. }>>, {
  1779. readonly type: string;
  1780. readonly disabled: boolean;
  1781. readonly name: string;
  1782. readonly onChange: (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1783. readonly drag: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1784. readonly multiple: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1785. readonly data: Record<string, any>;
  1786. readonly onError: (error: Error, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1787. readonly onProgress: (evt: import("./upload").UploadProgressEvent, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1788. readonly action: string;
  1789. readonly method: string;
  1790. readonly showFileList: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1791. readonly accept: string;
  1792. readonly fileList: import("./upload").UploadUserFile[];
  1793. readonly autoUpload: import("../../../utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
  1794. readonly listType: import("../../../utils").EpPropMergeType<StringConstructor, "text" | "picture" | "picture-card", unknown>;
  1795. readonly httpRequest: import("./upload").UploadRequestHandler;
  1796. readonly withCredentials: boolean;
  1797. readonly beforeUpload: (rawFile: import("./upload").UploadRawFile) => import("../../../utils").Awaitable<boolean | void | File | Blob | null | undefined>;
  1798. readonly onRemove: (uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1799. readonly onPreview: (uploadFile: import("./upload").UploadFile) => void;
  1800. readonly onSuccess: (response: any, uploadFile: import("./upload").UploadFile, uploadFiles: import("./upload").UploadFiles) => void;
  1801. readonly onExceed: (files: File[], uploadFiles: import("./upload").UploadUserFile[]) => void;
  1802. }>;
  1803. export default _default;