import { type LocalAdapterConfig } from "./console-settings.js"; export type StartConsoleServerOptions = { discoverLocalProviders: boolean; host?: string; localAdapters: LocalAdapterConfig[]; name: string; port: number; tunnel?: boolean; tunnelId?: string; }; export declare function startConsoleServer({ discoverLocalProviders, host, localAdapters, name, port, tunnel, tunnelId }: StartConsoleServerOptions): void; export declare function consoleLocalTokenMatches(token: string, secret?: string | undefined): boolean;