/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { UploadFileInfo } from './interfaces/UploadFileInfo'; import { UploadAsyncProps } from './interfaces/UploadAsyncProps'; import { PropType } from 'vue'; /** * @hidden */ export interface UploadListGroupProps { files: Array; async: UploadAsyncProps; disabled: boolean; navigationIndex: number | undefined; list?: any; index: number; } /** * @hidden */ declare const UploadListGroup: import('vue').DefineComponent; async: PropType; disabled: PropType; navigationIndex: PropType; list: PropType; index: PropType; }>, { elementRef: import('vue').Ref; }, {}, {}, { onClick(): 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: PropType; list: PropType; index: PropType; }>> & Readonly<{ onClick?: (...args: any[] | unknown[]) => any; onCancel?: (...args: any[] | unknown[]) => any; onRemove?: (...args: any[] | unknown[]) => any; onRetry?: (...args: any[] | unknown[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { UploadListGroup };