import type Conf from 'conf'; import type { InfinicodeConfig } from '../kernel/config-schema.js'; export interface MeshLinkOptions { host?: string; port?: string; token?: string; https?: boolean; quiet?: boolean; } export declare function meshLink(config: Conf, opts: MeshLinkOptions): Promise;