import { CommandData } from '../types';
export declare class Command implements CommandData {
    name: string;
    description?: string;
    aliases?: string[];
    category?: string;
    code: string;
    type?: 'message' | 'interaction' | 'both';
    slash?: boolean;
    options?: any[];
    enabled?: boolean;
    developerOnly?: boolean;
    constructor(data: CommandData);
}
