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