export declare class AiEndpoint { id: string; tenant_id: string; name: string; slug: string; description: string; agent_id: string; db_connection_id: string; endpoint_url: string | null; method: string; headers: Record; body_schema: Record; sample_body: Record; query_text: string; response_format: string; ai_mode: boolean; system_prompt: string; query_endpoint_slug: string; include_query_result: boolean; sample_response: any; enable_image_generation: boolean; image_agent_id: string; is_active: boolean; created_at: Date; updated_at: Date; }