import { HttpOperation } from "../types/common"; import { AppInfo, PublicAppInfo } from "../types/mini-app"; /** * Get the app information. * @param {HttpOperation} request This API does not require any payload, as the Mini App ID will be derived from the authenticated headers. The requester must include a valid `Authorization: Bearer ` header with a valid token. * @returns {Promise} The app information, including the Mini App ID, name, description, and version status,... */ export declare function getAppInfo({ request }: HttpOperation): Promise; export { AppInfo, PublicAppInfo };