import { ApiDefinition } from "../api"; import { TenantEntityProps } from "./tenants"; export type Application = { id: string; clientId: string; name: string; type: string; }; export type AssignTenantApplicationsProps = { applicationIds: string[]; } & TenantEntityProps; export declare const assignTenantApplications: ApiDefinition; export type RemoveTenantApplicationProps = { id: Application["id"]; } & TenantEntityProps; export declare const removeTenantApplication: ApiDefinition; export declare const getTenantApplications: ApiDefinition;