import { IApplicationReferences } from '../application';
import { ICustomPropertiesMap } from '../core';
export interface ICurrentTenant extends ICustomPropertiesMap {
    name: string;
    domainName: string;
    allowCreateTenants: boolean;
    /**
     * Containing both owned and subscribed applications
     */
    applications?: IApplicationReferences;
    /**
     * The parent tenant id
     * Only available if current tenant has been requested with `withParent` parameter set to true.
     */
    parent?: string;
    self?: string;
}
export interface ICurrentTenantParams {
    withParent?: boolean;
    [key: string]: any;
}
//# sourceMappingURL=ICurrentTenant.d.ts.map