import type { Config } from './config.js'; export type SetupOptions = { caCertPath: string; caKeyPath: string; geolite2Path: string; }; export declare function setup({ alias, tunnel: tunnelServerConfig, ddns: ddnsOptions, direct, ...rest }: Config, { caCertPath, caKeyPath, geolite2Path }: SetupOptions): Promise;