import type { Resource } from '@modelcontextprotocol/sdk/types.js'; /** * Get available resources for the current working directory */ export declare function getResources(): Promise; /** * Read a resource by URI */ export declare function handleResourceRead(uri: string): Promise<{ contents: Array<{ uri: string; mimeType: string; text: string; }>; }>; //# sourceMappingURL=resources.d.ts.map