export interface VideoPromptReference { name: string; category: 'provider' | 'framework'; summary: string; file: string; } export declare function listPromptReferences(): VideoPromptReference[]; export declare function readPromptReference(name: string, root?: string): Promise<(VideoPromptReference & { content: string; }) | null>; //# sourceMappingURL=prompt-library.d.ts.map