import { PromptWithResources } from '../types/resource-types.js';
export declare class ResourcePromptHandler {
    private resourceHandler;
    constructor();
    private replaceArguments;
    private resolveResourceUris;
    processPrompt(prompt: PromptWithResources, args: Record<string, any>): Promise<PromptWithResources>;
    processFolderReview(path: string, fileTypes?: string): Promise<PromptWithResources>;
    processFileComparison(file1: string, file2: string): Promise<PromptWithResources>;
}
