import { type PropDefinition } from '../utils/genCompDoc.js'; /** * 生成组件文档并保存到 docs 目录下 */ export declare function generateComponentDocumentation(options: { targetIndexVuePath: string; docsDir: string; props?: PropDefinition[]; isRemUnit?: boolean; }): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; //# sourceMappingURL=generateComponentDoc.d.ts.map