import type { Config } from '../config/schema.js'; export type GatewayTlsRuntime = { enabled: boolean; port?: number; }; /** Native HTTPS for LAN/tailnet binds (Phase 2). Requires certPath/keyPath or autoGenerate. */ export declare function resolveGatewayTlsRuntime(cfg: Config): GatewayTlsRuntime;