import { AbortablePromise } from './ai.ts'; import { LLMRequest } from './llm.ts'; export declare abstract class LLMProvider { abstract ask(message: string, options: LLMRequest): AbortablePromise; }