export type ContentCategory = "commands" | "agents" | "modes" | "framework" | "skills" | "workflows" | "personas"; export declare function getContentDir(): string; export declare function loadContentFile(category: ContentCategory, name: string): string; export declare function loadContentFileAsync(category: ContentCategory, name: string): Promise; export declare function listContentFiles(category: ContentCategory): string[]; export declare function listContentFilesAsync(category: ContentCategory): Promise; export declare function contentFileExists(category: ContentCategory, name: string): boolean;