import { Framework } from "../api/types.js"; /** * 保存组件到服务器数据库 */ export declare function saveComponentToServer(options: { name: string; needId: string; componentDirPath: string; docDirPath: string; framework: Framework; }): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=saveComponentToServer.d.ts.map