import type { RuleModule } from '../../types'; /** * Validate that all packages use HTTPS protocol. * Prevents man-in-the-middle attacks where packages could be intercepted * and replaced when downloaded over unencrypted HTTP. * * Example config: * ```ts * pluginRules: { * 'lockfile/validate-https': 'error' * } * ``` */ export declare const validateHttps: RuleModule;