import { HttpClient } from '../../http-client/http-client'; import { HttpApiResponse } from '../common/make-request'; import { Network } from '../common/network'; import { AppToken, BotUsername } from '../common/types'; export interface GetMeRequestOptions { appToken: AppToken; httpClient: HttpClient; network?: Network; } export interface GetMeResponse { app_id: number; name: string; payment_processing_bot_username: BotUsername; } export interface GetMeResult { appId: number; name: string; paymentProcessingBotUsername: BotUsername; } export declare function getMe(options: GetMeRequestOptions): Promise>;