import type { CLIContext } from '../../registry.js'; export type GatewayRunCliOptions = { bind?: string; port?: string | number; token?: string; tailscale?: string; tailscaleResetOnExit?: boolean; force?: boolean; hotReload?: boolean; foreground?: boolean; }; export declare function runGatewayFromCliOptions(options: GatewayRunCliOptions, ctx: CLIContext): Promise;