export type CursorMdcScope = "always" | "auto-attach" | "description"; export interface CursorMdcFrontmatterOptions { description: string; scope: CursorMdcScope; globs?: string[]; orchestraVersion?: string; } export declare function renderCursorMdcFrontmatter({ description, scope, globs, orchestraVersion, }: CursorMdcFrontmatterOptions): string; export declare function applyCursorMdcFrontmatter(content: string, options: CursorMdcFrontmatterOptions): string; export declare function stripCursorMdcFrontmatter(content: string): string;