import { FileExists } from '@shopify/theme-check-common';
import { Connection } from 'vscode-languageserver';
import { RenameFilesParams } from 'vscode-languageserver-protocol';
import { DocumentManager } from '../documents';
/**
 * The RenameHandler is responsible for handling workspace/didRenameFiles notifications.
 *
 * Stuff we'll handle:
 * - When a snippet is renamed, then we'll change all the render calls
 * - When an asset is renamed, then we'll change the asset_url calls
 * - etc.
 */
export declare class RenameHandler {
    private documentManager;
    private fileExists;
    private handlers;
    constructor(connection: Connection, documentManager: DocumentManager, fileExists: FileExists);
    onDidRenameFiles(params: RenameFilesParams): Promise<void>;
}
