import CerebroError from "./cerebro-error.d.ts"; /** * Error thrown when command validation fails. */ declare class CommandValidationError extends CerebroError { readonly commandName: string; readonly missingOptions: string[]; constructor(commandName: string, missingOptions: string[]); } export default CommandValidationError;