import { type PromptRegistryFileName } from "./prompt-registry.js"; export interface PromptRegistryEntryInput { root?: string; artifact: string; task: string; role: string; prompt: string; paths?: string[]; issues?: string[]; decisions?: string[]; evidence?: string[]; reviews?: string[]; register?: PromptRegistryFileName; date?: string; } export interface PromptRegistryUpdateResult { file: string; artifact: string; created: boolean; iterations: number; redacted: boolean; } export declare function updatePromptRegistryEntry(input: PromptRegistryEntryInput): Promise;