export interface PromptCall { type: string; prompt: string | null; hasConfig: boolean; argIndex: number; } export declare function extractPromptCalls(code: string): Promise;