#!/usr/bin/env node declare function isGlobalInstall(): boolean; declare function findProjectRoot(): string | null; declare function removeDeprecatedScripts(scripts: Record): string[]; declare function addWorkflowScript(scripts: Record): { added: boolean; updated: boolean; }; declare function addScriptsToPackageJson(): void; export { addScriptsToPackageJson, addWorkflowScript, findProjectRoot, isGlobalInstall, removeDeprecatedScripts };