import { RequestHandler, NotificationHandler, WorkspaceEdit, CreateFilesParams, RenameFilesParams, DeleteFilesParams } 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): void; onDidRenameFiles(handler: NotificationHandler): void; onDidDeleteFiles(handler: NotificationHandler): void; onWillCreateFiles(handler: RequestHandler): void; onWillRenameFiles(handler: RequestHandler): void; onWillDeleteFiles(handler: RequestHandler): void; } export declare const FileOperationsFeature: Feature<_RemoteWorkspace, FileOperationsFeatureShape>;