import { ServiceParameters } from "@imaginary-dev/util"; import { Prompt } from "./prompt"; export declare const runPromptWithRetry: (prompt: Prompt, parameters: Record, serviceParameters: ServiceParameters) => Promise<{ text: string; finish_reason?: string | undefined; }>;