/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GroupedFiles } from './interfaces/FileGroup'; import { UploadAsyncProps } from './interfaces/UploadAsyncProps'; import { PropType } from 'vue'; /** * @hidden */ export interface UploadListProps { groupedFiles: GroupedFiles; async: UploadAsyncProps; disabled: boolean; navigationIndex?: number; list?: any; } /** * @hidden */ declare const UploadList: import('vue').DefineComponent; async: PropType; disabled: PropType; navigationIndex: { type: PropType; default: any; }; list: PropType; }>, {}, {}, {}, { onClick(navIndex: number | undefined): void; onRetry(uid: string): void; onRemove(uid: string): void; onCancel(uid: string): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { cancel: any; click: any; retry: any; remove: any; }, string, import('vue').PublicProps, Readonly; async: PropType; disabled: PropType; navigationIndex: { type: PropType; default: any; }; list: PropType; }>> & Readonly<{ onClick?: (...args: any[] | unknown[]) => any; onCancel?: (...args: any[] | unknown[]) => any; onRemove?: (...args: any[] | unknown[]) => any; onRetry?: (...args: any[] | unknown[]) => any; }>, { navigationIndex: number; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { UploadList };