type ProjectLogsPromptOptions = { functionChoices?: string[]; promptOptions?: { function?: string; }; projectName?: string; }; type ProjectLogsPromptResponse = { functionName?: string; }; export declare function projectLogsPrompt({ functionChoices, promptOptions, projectName, }: ProjectLogsPromptOptions): Promise; export {};