import { AnyCommandContext } from '../CommandContext'; import { OptionType } from '../constants/OptionType'; import type { CommandOptionValue } from '../interfaces/CommandOption'; import { Resolver } from '../interfaces/Resolver'; export declare type BigIntegerOption = CommandOptionValue; export declare class BigIntegerOptionResolver implements Resolver { option: OptionType; convert: 3; resolve(ctx: AnyCommandContext, option: BigIntegerOption, text: string): Promise; }