import { ReadResourceParams } from '../schemas.js';
export declare function handleReadResource(params: ReadResourceParams): Promise<{
    content: {
        type: "text";
        text: string;
    }[];
    isError: boolean;
} | {
    content: {
        type: "text";
        text: string;
    }[];
    isError?: undefined;
}>;
