/** A raw .prompt file discovered from a source */ export interface DiscoveredPromptFile { filename: string; content: string; } /** Interface for all prompt discovery backends */ export interface PromptSource { getPrompts(): Promise; } /** Type guard to check if a value implements the PromptSource interface */ export declare function isPromptSource(value: unknown): value is PromptSource; //# sourceMappingURL=prompt-source.d.ts.map