import { User } from '@things-factory/auth-base'; import { Domain } from '@things-factory/shell'; import { DataKeyItem } from './data-key-item-type.js'; import { DataSetReportType } from '../data-set/data-set.js'; export declare class DataKeySet { readonly id: string; domain?: Domain; domainId?: string; name: string; description?: string; active?: boolean; reportType?: DataSetReportType; reportView?: string; dataKeyItems: DataKeyItem[]; createdAt?: Date; updatedAt?: Date; creator?: User; creatorId?: string; updater?: User; updaterId?: string; thumbnail?: string; }