/** One installable first-party External Tool Adapter, projected from its manifest. */ export interface FirstPartyAdapter { /** npm package to `opensip tools install` (e.g. `@opensip-cli/tool-cppcheck`). */ readonly pkg: string; /** The tool id / primary command verb (`cppcheck`). */ readonly id: string; /** The install-and-run hint command (`opensip cppcheck`). */ readonly command: string; readonly description: string; readonly network: 'local-only' | 'networked'; /** Canonical language ids the scanner covers; `[]` = polyglot (matches every --lang). */ readonly languages: readonly string[]; readonly aliases: readonly string[]; } export declare const FIRST_PARTY_ADAPTERS: readonly FirstPartyAdapter[]; //# sourceMappingURL=first-party-adapters.generated.d.ts.map