import { RequestHandler, NotificationHandler, WorkspaceEdit, CreateFilesParams, RenameFilesParams, DeleteFilesParams, Disposable } from 'vscode-languageserver-protocol'; import type { Feature, _RemoteWorkspace } from './server'; /** * Shape of the file operations feature * * @since 3.16.0 */ export interface FileOperationsFeatureShape { onDidCreateFiles(handler: NotificationHandler): Disposable; onDidRenameFiles(handler: NotificationHandler): Disposable; onDidDeleteFiles(handler: NotificationHandler): Disposable; onWillCreateFiles(handler: RequestHandler): Disposable; onWillRenameFiles(handler: RequestHandler): Disposable; onWillDeleteFiles(handler: RequestHandler): Disposable; } export declare const FileOperationsFeature: Feature<_RemoteWorkspace, FileOperationsFeatureShape>;