import type { SlashCommand } from '@wrongstack/core/types'; import type { SlashCommandMatch } from './app-state.js'; type SlashCommandEntry = { cmd: SlashCommand; owner: string; fullName: string; }; export declare function selectedSlashCommandLine(picker: { open: boolean; matches: SlashCommandMatch[]; selected: number; }): string | null; export declare function buildSlashCommandMatches(entries: SlashCommandEntry[], rawQuery: string): SlashCommandMatch[]; export {}; //# sourceMappingURL=slash-command-search.d.ts.map