/** * @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 { PropType } from 'vue'; /** * @hidden */ export interface UploadAddButtonProps { addButtonIndex: number; navigationIndex: number | undefined; notFocusedIndex: number | undefined; tabIndex?: number; async: UploadAsyncProps; multiple?: boolean; disabled?: boolean; accept?: string; id?: string; ariaLabelledBy?: string; ariaDescribedBy?: string; } /** * @hidden */ declare const UploadAddButton: import('vue').DefineComponent; navigationIndex: PropType; notFocusedIndex: PropType; tabIndex: PropType; async: PropType; multiple: PropType; disabled: PropType; accept: PropType; id: PropType; ariaLabelledBy: PropType; ariaDescribedBy: PropType; }>, { elementRef: import('vue').Ref; uploadInputRef: import('vue').Ref; kendoLocalizationService: {}; }, {}, {}, { focus(): void; onClick(): void; onAdd(files: any): void; onInputMouseDown(e: any): void; actionElement(): any; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { add: any; click: any; }, string, import('vue').PublicProps, Readonly; navigationIndex: PropType; notFocusedIndex: PropType; tabIndex: PropType; async: PropType; multiple: PropType; disabled: PropType; accept: PropType; id: PropType; ariaLabelledBy: PropType; ariaDescribedBy: PropType; }>> & Readonly<{ onClick?: (...args: any[] | unknown[]) => any; onAdd?: (...args: any[] | unknown[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { UploadAddButton };