import type { ConfigRepo } from "../storage/config-repo.js"; export declare class Rewriter { private configRepo; constructor(configRepo: ConfigRepo); getModelUri(): string; rewrite(rawPrompt: string, projectDir?: string, onStatus?: (message: string) => void, template?: string): Promise<{ text: string; templateUsed: boolean; }>; }