import type { AgentSession } from '../../../agent/session.js'; import type { SlashCommand } from '../types.js'; import { type DiscoveredSkill } from './state.js'; export declare function makeForwardHandler(skill: DiscoveredSkill, flags?: readonly string[]): SlashCommand; export declare function registerPluginSkills(session: AgentSession): Promise; export declare function getPluginShadowingNoticeLines(): string[]; export declare function autoRegisterPluginPassthroughs(session: AgentSession): Promise<{ skillCount: number | null; agentCount: number | null; }>;