import { HalResource } from 'hal-types';
import { ResourceNames } from '../../constants';
import { ISystemProperty } from '../ISystemProperty';
export interface IResourceSystemProperties extends HalResource {
    _embedded: {
        [ResourceNames.SYSTEM_PROPERTIES]: ISystemProperty[];
    };
}
