/** * Client-side helpers shared by both tsc programs. * * Lives outside `src/client` so the offline smoke checks can import it: a * comparison that is only exercised in a browser cannot be regressed. */ /** * Whether a README's install command and the verified spec name the same thing. * * `npm i @foo/bar`, `pnpm add @foo/bar`, and `pnpm i @foo/bar@latest` all * install the same package; only the package identity matters, not the * package-manager spelling or an attached version. * @param command - the README's command, verbatim. * @param spec - the verified install spec. * @returns true when both point at the same package or repository. */ export declare function sameInstallTarget(command: string, spec: string | undefined): boolean;