import type { SlashContext } from '../types.js'; import { type SearchableSkill } from './search.js'; import { type DiscoveredSkill } from './state.js'; export declare function buildSearchUniverse(plugins: DiscoveredSkill[], internalUnlocked: boolean): SearchableSkill[]; export type { SearchableSkill }; export declare function renderSkillSearch(ctx: SlashContext, universe: readonly SearchableSkill[], query: string): void;