import { InstallResult } from "../../lib/installer.js"; interface InstallProgressProps { skills: string[]; overwrite?: boolean; onComplete: (results: InstallResult[]) => void; } export declare function InstallProgress({ skills, overwrite, onComplete, }: InstallProgressProps): import("react/jsx-runtime").JSX.Element; export {};