export declare const runAIAnalysis: (options: any) => Promise<{
    prompt: string;
    max_gen_len: number;
    temperature: number;
    top_p: number;
}>;
export declare const generateAIPrompt: (resourceId: string, resource: any, existingFindings?: any[]) => Promise<string>;
