import type { BaseClientOptions } from "../../../../BaseClient.js"; import { Connections } from "../resources/connections/client/Client.js"; import { Invitations } from "../resources/invitations/client/Client.js"; import { Members } from "../resources/members/client/Client.js"; import { Owner } from "../resources/owner/client/Client.js"; import { SecurityContact } from "../resources/securityContact/client/Client.js"; import { Self } from "../resources/self/client/Client.js"; export declare namespace Tenants { interface Options extends BaseClientOptions { } } export declare class Tenants { protected readonly _options: Tenants.Options; protected _securityContact: SecurityContact | undefined; protected _connections: Connections | undefined; protected _invitations: Invitations | undefined; protected _members: Members | undefined; protected _owner: Owner | undefined; protected _self: Self | undefined; constructor(_options?: Tenants.Options); get securityContact(): SecurityContact; get connections(): Connections; get invitations(): Invitations; get members(): Members; get owner(): Owner; get self(): Self; }