import { QlikSaaSClient } from "qlik-rest-api";
import { Tenant } from "./Tenant";
export interface ITenantCreationRequest {
    name: string;
    hostname: string[];
    licenseKey: string;
}
export declare class Tenants {
    #private;
    constructor(saasClient: QlikSaaSClient);
    get(arg: {
        id: string;
    }): Promise<Tenant>;
    create(arg: ITenantCreationRequest): Promise<Tenant>;
}
