import { SlashCommand } from '../../shared/constants.js'; import type { CommandAvailability } from './slashCommandRegistry.js'; /** * Slash command parser for interactive mode. * * Detects slash commands at the beginning or end of user input. * Commands in the middle of text are not recognized. * * @param input - User input string. * @returns Parsed command and associated text, or null if no command found. */ export declare const matchSlashCommand: (input: string, availability?: CommandAvailability) => { command: SlashCommand; text: string; } | null; export declare const isDisabledVerifyCommand: (input: string, availability?: CommandAvailability) => boolean; //# sourceMappingURL=commandMatcher.d.ts.map