interface SlashCommand { data: Record; execute: (...args: any[]) => void; } interface ValidsSlash { valids: SlashCommand[]; invalids: any[]; } export { SlashCommand, ValidsSlash }; //# sourceMappingURL=slashcommand.types.d.ts.map