import { DataEntity } from '@mbc-cqrs-serverless/core';
import { SettingAttributes } from '../dto/setting-attributes.dto';
export declare class SettingDataEntity extends DataEntity {
    attributes: SettingAttributes;
    constructor(partial: Partial<SettingDataEntity>);
}
