import { JsonSchema } from "../documents/JsonSchema.js"; type Prompt = { appId: string; promptId: string; version: number; instructions: string; outputSchema?: JsonSchema; createdAt: string; }; interface PromptManager { save(promptId: string, instructions: string, outputSchema?: JsonSchema): Promise; retrieve(promptId: string, version?: number): Promise; list(): Promise>; history(promptId: string): Promise>; } declare const samePromptContent: (existing: Pick, instructions: string, outputSchema?: JsonSchema) => boolean; export { samePromptContent }; export type { Prompt, PromptManager }; //# sourceMappingURL=PromptManager.d.ts.map