import { CommandSuggestion as ICommandSuggestion } from '../common.js';
export default class CommandSuggestion implements ICommandSuggestion {
    title?: string;
    description?: string;
    imageurl?: string;
    constructor(title?: string, description?: string, imageurl?: string);
}
