export declare function rpmToSecond(rpm: number): number; /** * Determine if an address should use HTTPS based on common patterns. * * @param address - The address to check (e.g., "localhost:6233", "api.restack.io") * @returns True if HTTPS should be used, False for HTTP */ export declare function shouldUseHttps(address: string): boolean;