/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Task } from "@lit/task"; import type { ReactiveControllerHost } from "lit"; import type { Environment } from "../../contexts/environment.js"; export declare function fetchAvailableConnections(host: ReactiveControllerHost, environment: () => Environment | undefined, autoRun: boolean): Task; export interface Connection { id: string; authUrl: string; title: string; description?: string; icon?: string; } //# sourceMappingURL=connection-server.d.ts.map