import { type InstallOptions } from './cli-install.js'; import { type SkillAgent } from './connect-clients.js'; export declare function installWebSkill(client: { skillAgent?: SkillAgent; displayName: string; }, { verbose }: Pick): void; /** Rewrite the vendored skill where connect recorded installs; true iff bytes changed. */ export declare function updateWebSkill({ verbose }: InstallOptions): boolean;