import { A_AUTH_AppInteractions_APIProvider } from "../../../global/api-providers/A_AUTH_AppInteractions.api"; import { A_AUTH_APP_INTERACTIONS_TYPES__AppsListRequest, A_AUTH_APP_INTERACTIONS_TYPES__AppsListResponse, A_AUTH_TYPES__App_APIEntity } from "./A_AUTH_Apps.types"; import { A_AUTH_ContextClass } from "../../../global/A_AUTH_Context.class"; export declare class A_AUTH_APP_INTERACTIONS__AppsAPI extends A_AUTH_AppInteractions_APIProvider { protected get baseURL(): string; /** * Returns a lis of apps corresponding to the user and the filter * * * @param request * @param meta * @returns */ list(request: A_AUTH_APP_INTERACTIONS_TYPES__AppsListRequest, meta?: M): Promise; /** * Returns a app by id or identity * * @param appASEID * @returns */ load( /** * The app ASEID */ appASEID: string, meta?: M): Promise; }