/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { FileInfo } from '../types';
/**
 * Arguments for the `resume` event. The `resume` event fires when
 * you resume a previously paused file upload.
 *
 * ```typescript
 *  @Component({
 *    template: `
 *    <kendo-upload
 *      [chunkable]="true"
 *      (resume)="resumeEventHandler($event)">
 *    </kendo-upload>
 *    `
 *  })
 *  export class UploadComponent {
 *    public resumeEventHandler(ev: ResumeEvent) {
 *      console.log('File resumed');
 *    }
 *  }
 * ```
 */
export declare class ResumeEvent {
    /**
     * The file that you resumed during the upload process.
     */
    file: FileInfo;
    /**
     * @hidden
     * Constructs the event arguments for the `resume` event.
     * @param file - The file that is going to be resumed.
     */
    constructor(file: FileInfo);
}
