import type { Command } from "#compiled/commander/index.js"; interface IntegrationCommandLogger { error(message: string): void; log(message: string): void; } /** Registers hidden built-in integration setup commands used by trusted registry items. */ export declare function registerIntegrationCommands(input: { program: Command; logger: IntegrationCommandLogger; appRoot: string; }): void; export {};