import { GuardResult } from '../guard/types';
export declare function llmResponse(provider: string, prompt: string, model?: string, baseUrl?: string, apiKey?: string): Promise<string>;
export declare function parseLlmResponse(response: string | object): GuardResult;
