import { IResponse, IContext } from '../../types'; import { IApp } from '..'; export interface IGetAppApiResponse { app: IApp; } export interface IGetAppApiRequest { app_id: string; } export type GetAppResponse = IResponse; export declare const getApp: ({ httpClient, }: IContext) => ({ app_id, }: IGetAppApiRequest) => Promise>;