import { ApiDefinition } from "../api"; export declare const detail: (id: string) => string; export type Tenant = { tenantId: string; name: string; }; export type TenantEntityProps = { tenantId: string; }; export declare const getTenants: ApiDefinition; export type GetEntityTenantsParams = { memberId: string; memberType: "USER" | "GROUP" | "APPLICATION"; }; export declare const getEntityTenants: ApiDefinition; export declare const getTenant: ApiDefinition; type CreateTenantParams = { name: string; } & TenantEntityProps; export declare const createTenant: ApiDefinition; type UpdateTenantParams = CreateTenantParams; export declare const updateTenant: ApiDefinition; type DeleteTenantProps = TenantEntityProps; export declare const deleteTenant: ApiDefinition; export {};