import TenantGroupDetail from './TenantGroupDetail';
/**
 * @export
 * @class TenantWithGroups
 */
export declare class TenantWithGroups {
    /**
     * Id of Tenant (required)
     * @type {string}
     * @memberof TenantWithGroups
     */
    id?: string;
    /**
     * Email of Tenant (required)
     * @type {string}
     * @memberof TenantWithGroups
     */
    email?: string;
    /**
     * List of all groups of Tenant (required)
     * @type {TenantGroupDetail[]}
     * @memberof TenantWithGroups
     */
    groups?: TenantGroupDetail[];
    constructor(obj?: Partial<TenantWithGroups>);
}
export default TenantWithGroups;
