import { ConnectedTenant, GuidValue } from "../models"; export declare class ConnectedTenantService { private httpClient; private readonly baseUrl; getAll: () => Promise>; add: (connectedTenant: ConnectedTenant) => Promise; update: (connectedTenant: ConnectedTenant) => Promise; delete: (id: GuidValue) => Promise; getById: (id: GuidValue) => Promise; }