interface SlashCommand { data: Record; execute: (...args: any[]) => void; } interface ValidSlash { valid: SlashCommand[]; invalid: any[]; } export { SlashCommand, ValidSlash }; //# sourceMappingURL=slashTypes.d.ts.map