import { isString, isUUID } from 'class-validator'; import { PROCESS_STATUS } from '../../general'; import { BACKUP_TYPE } from './backup.entity'; export declare const permittedQueryParamDeviceBackupEntity: { relationsDefault: string[]; relations: string[]; filterParams: ({ key: string; strict: boolean; valid: typeof isUUID; defaultLabel: string; internalKey?: undefined; transform?: undefined; options?: undefined; } | { key: string; internalKey: string; transform: string; strict: boolean; valid: typeof isString; defaultLabel: string; options?: undefined; } | { key: string; strict: boolean; valid: typeof isString; defaultLabel: string; options: PROCESS_STATUS[]; internalKey?: undefined; transform?: undefined; } | { key: string; strict: boolean; valid: typeof isString; defaultLabel: string; options: BACKUP_TYPE[]; internalKey?: undefined; transform?: undefined; })[]; };