import type { Command } from "commander"; import { type SkillsConfig } from "../lib/config.js"; export interface FirstRunOnboardingInput { argv: string[]; commandName?: string; config: SkillsConfig; isInteractive: boolean; testMode?: boolean; } export declare function getRootCommandName(actionCommand: Command): string; export declare function shouldShowFirstRunOnboarding(input: FirstRunOnboardingInput): boolean; export declare function getFirstRunOnboardingMessage(): string; export declare function maybePrintFirstRunOnboarding(actionCommand: Command, argv: string[], isInteractive: boolean): void;