/** * Build a Cursor rule (.mdc) file from LLM package metadata. * The rule gives the IDE/AI project-specific context (exports, use cases, conventions). */ import type { LLMPackageJson } from './types.js'; /** * Build the body of a .mdc rule: project context for Cursor/AI. */ export declare function buildRuleMdcContent(meta: LLMPackageJson): string; /** * Build full .mdc file with optional frontmatter (description, globs). */ export declare function buildRuleMdc(meta: LLMPackageJson, options?: { globs?: string[]; }): string; //# sourceMappingURL=buildRuleMdc.d.ts.map