import CerebroError from "./cerebro-error.d.ts"; /** * Error thrown when a command is not found. */ declare class CommandNotFoundError extends CerebroError { readonly commandName: string; constructor(commandName: string, suggestions?: string[]); } export default CommandNotFoundError;