import { TenantSecurityGroupScopes } from './tenant.security.group.scopes'; import { TenantSecurityGroupServices } from './tenant.security.group.services'; export type TenantSecurityGroup = { id?: string; enabledByDefault?: boolean | null; scopes?: TenantSecurityGroupScopes; services?: TenantSecurityGroupServices; }; export declare function LoadTenantSecurityGroup(current: TenantSecurityGroup, payload: any): TenantSecurityGroup;