import { Root } from '@modelcontextprotocol/sdk/types.js';
export declare function resolveAndValidatePath(rawPath: string, clientRoots: Root[], // Roots from server.getRoots()
accessType: 'read' | 'write'): Promise<string>;
export declare function writeFile(filePath: string, content: string): Promise<void>;
export declare function readFileToBuffer(filePath: string): Promise<Buffer>;
