/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { UploadAsyncProps } from './interfaces/UploadAsyncProps'; import { UploadFileStatus } from './interfaces/UploadFileStatus'; import { LocalizationService } from '@progress/kendo-vue-intl'; import { PropType } from 'vue'; /** * @hidden */ export interface UploadListActionButtonProps { progress: number; uid: string; status: UploadFileStatus; async: UploadAsyncProps; disabled: boolean; files: any[]; } /** * @hidden */ declare const UploadListActionButton: import('vue').DefineComponent; uid: PropType; status: PropType; async: PropType; disabled: PropType; files: PropType; }>, { kendoLocalizationService: {}; }, { retryFocused: boolean; actionFocused: boolean; }, {}, { actionButtonTitle(status: UploadFileStatus, localizationService: LocalizationService): string; retryButtonTitle(localizationService: LocalizationService): string; buttonClassNames(type: string): string; onRetryFocus(): void; onRetryBlur(): void; onActionFocus(): void; onActionBlur(): void; onActionClick(): void; onRetryClick(): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { cancel: any; retry: any; remove: any; }, string, import('vue').PublicProps, Readonly; uid: PropType; status: PropType; async: PropType; disabled: PropType; files: PropType; }>> & Readonly<{ onCancel?: (...args: any[] | unknown[]) => any; onRemove?: (...args: any[] | unknown[]) => any; onRetry?: (...args: any[] | unknown[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { UploadListActionButton };