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<OptionType.BIG_INTEGER, bigint>;
export declare class BigIntegerOptionResolver implements Resolver<bigint> {
    option: OptionType;
    convert: 3;
    resolve(ctx: AnyCommandContext, option: BigIntegerOption, text: string): Promise<bigint>;
}
