/** * 根据ID获取HTML片段 */ export declare function fetchHtmlFragment(id: string, componentDir: string): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=fetchHtmlFragment.d.ts.map