import React from "react"; import { SkillMeta } from "../../lib/registry.js"; interface SkillSelectProps { skills: SkillMeta[]; selected: Set; onToggle: (name: string) => void; onConfirm: () => void; onBack: () => void; } export declare function SkillSelect({ skills, selected, onToggle, onConfirm, onBack, }: SkillSelectProps): React.JSX.Element; export {};