/** * @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 { UploadUIProps } from '.'; import { PropType } from 'vue'; /** * @hidden */ export interface UploadDropZoneProps extends UploadUIProps { async: Object; fileGroup: GroupedFiles; disabled: boolean | undefined; } /** * @hidden */ declare const UploadDropZone: import('vue').DefineComponent; async: PropType; multiple: { type: PropType; default: boolean; }; disabled: { type: PropType; default: boolean; }; showFileList: PropType; showActionButtons: PropType; actionsLayout: { type: PropType; default: () => "end"; }; tabIndex: PropType; accept: PropType; groupedFiles: { type: PropType; default: () => {}; }; navigationIndex: PropType; notFocusedIndex: PropType; list: PropType; id: PropType; ariaLabelledBy: PropType; ariaDescribedBy: PropType; fileGroup: PropType; }>, { uploadAddButtonRef: import('vue').Ref; kendoLocalizationService: {}; }, { currentDocumentActive: boolean; currentElementActive: boolean; }, { dropZoneClasses(): { 'k-dropzone': boolean; 'k-upload-dropzone': boolean; 'k-active': any; 'k-hover': any; }; }, { actionElement(): any; focus(): any; onDocumentDragEnter(): void; onDocumentDragOver(): void; onElementDragEnter(): void; onElementDragOver(event: any): void; onDrop(event: any): void; isDragOver(prevDate: Date | null): boolean; onClick(eventIndex: number): void; onAdd(files: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { add: any; click: any; }, string, import('vue').PublicProps, Readonly; async: PropType; multiple: { type: PropType; default: boolean; }; disabled: { type: PropType; default: boolean; }; showFileList: PropType; showActionButtons: PropType; actionsLayout: { type: PropType; default: () => "end"; }; tabIndex: PropType; accept: PropType; groupedFiles: { type: PropType; default: () => {}; }; navigationIndex: PropType; notFocusedIndex: PropType; list: PropType; id: PropType; ariaLabelledBy: PropType; ariaDescribedBy: PropType; fileGroup: PropType; }>> & Readonly<{ onClick?: (...args: any[] | unknown[]) => any; onAdd?: (...args: any[] | unknown[]) => any; }>, { disabled: boolean; multiple: boolean; groupedFiles: GroupedFiles; actionsLayout: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { UploadDropZone };