/** * 保存 Vue 组件到本地文件系统 */ export declare function saveVueComponent(options: { componentName: string; indexVueCode: string; exampleVueCode: string; componentDir: string; description?: string; }): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=saveVueComponent.d.ts.map