import { Role } from 'eris'; import { AnyCommandContext } from '../CommandContext'; import { OptionType } from '../constants/OptionType'; import type { CommandOptionValue } from '../interfaces/CommandOption'; import { Resolver } from '../interfaces/Resolver'; export declare type RoleOption = CommandOptionValue; export declare class RoleOptionResolver implements Resolver { option: OptionType; convert: 8; reduce(ctx: AnyCommandContext, option: RoleOption, role: Role): Promise<{ display: string; extra?: string; }>; resolve(ctx: AnyCommandContext, option: RoleOption, input: string): Promise>; private checkRole; }