
import { CopilotRuntimeChatCompletionRequest, CopilotRuntimeChatCompletionResponse, CopilotServiceAdapter } from "../service-adapter.cjs";

//#region src/service-adapters/unify/unify-adapter.d.ts
interface UnifyAdapterParams {
  apiKey?: string;
  model: string;
}
declare class UnifyAdapter implements CopilotServiceAdapter {
  private apiKey;
  model: string;
  private start;
  provider: string;
  get name(): string;
  constructor(options?: UnifyAdapterParams);
  process(request: CopilotRuntimeChatCompletionRequest): Promise<CopilotRuntimeChatCompletionResponse>;
}
//#endregion
export { UnifyAdapter, UnifyAdapterParams };
//# sourceMappingURL=unify-adapter.d.cts.map