/** * Checks whether a given path uses the `javascript:` protocol. * * This is often used as a security check to prevent executing * potentially dangerous `javascript:` URLs. * * @param path - The input string (or null/undefined). * @returns `true` if the path starts with `javascript:`, otherwise `false`. * * @example * isJsProtocolLink('javascript:alert(1)'); // true * isJsProtocolLink('/docs/page'); // false * isJsProtocolLink(null); // false */ export declare const isJsProtocolLink: (path: string | null | undefined) => boolean; //# sourceMappingURL=is-js-protocol-link.d.ts.map