import type { FileUpload } from 'graphql-upload/GraphQLUpload.js'; import { DataKeyItemPatch } from './data-key-item-type.js'; import { DataKeySet } from './data-key-set.js'; import { DataSetReportType } from '../data-set/data-set.js'; export declare class NewDataKeySet { name: string; description?: string; active?: boolean; reportType?: DataSetReportType; reportView?: string; dataKeyItems?: DataKeyItemPatch[]; thumbnail?: FileUpload; } export declare class DataKeySetPatch { id?: string; name?: string; description?: string; active?: boolean; reportType?: DataSetReportType; reportView?: string; dataKeyItems?: DataKeyItemPatch[]; thumbnail?: FileUpload; cuFlag?: string; } export declare class DataKeySetList { items: DataKeySet[]; total: number; }