declare const ACCEPT_ROLES: string[]; declare const COMMAND: ({ name: string; code: string; options: { name: string; type: string; }[]; readable_commands?: undefined; } | { name: string; code: string; options: ({ name: string; type: string; initialValue?: undefined; } | { name: string; type: string; initialValue: { returnOriginal: boolean; }; })[]; readable_commands: { name: string; code: string; type: string; }[]; } | { name: string; code: string; options?: undefined; readable_commands?: undefined; })[]; export { ACCEPT_ROLES, COMMAND };