import { BotCommandsProvider, BotCommandsProviderActionMsg, BotCommandsProviderActionResultType } from '@kaufman-bot/core-server';
import { ScraperService } from '@kaufman-bot/html-scraper-server';
import { Context } from 'grammy';
export declare class CurrencyConverterService implements BotCommandsProvider {
    private readonly scraperService;
    handlerId: string;
    constructor(scraperService: ScraperService);
    onHelp<TMsg extends BotCommandsProviderActionMsg = BotCommandsProviderActionMsg>(msg: TMsg, ctx: Context): Promise<BotCommandsProviderActionResultType<TMsg>>;
    onMessage<TMsg extends BotCommandsProviderActionMsg = BotCommandsProviderActionMsg>(msg: TMsg, ctx: Context): Promise<BotCommandsProviderActionResultType<TMsg>>;
}
