import type { Command } from 'commander'; /** * Options for the 'tls enable' command */ export interface TLSEnableCommandOptions { port?: number; renewDays?: number; keepHttp?: boolean; certPath?: string; keyPath?: string; } /** * Options for the 'tls status' command */ export interface TLSStatusCommandOptions { json?: boolean; } export declare function registerTLSCommands(program: Command): void; //# sourceMappingURL=tls.d.ts.map