import { isString, isUUID } from 'class-validator'; import { STORAGE_PROVIDER_PROTOCOL } from '../../files/enum'; export declare const permittedQueryParamDeviceBackupDestinationEntity: { relationsDefault: string[]; relations: string[]; filterParams: ({ key: string; strict: boolean; valid: typeof isUUID; internalKey?: undefined; transform?: undefined; defaultLabel?: 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: STORAGE_PROVIDER_PROTOCOL[]; internalKey?: undefined; transform?: undefined; } | { key: string; strict: boolean; valid: typeof isUUID; defaultLabel: string; internalKey?: undefined; transform?: undefined; options?: undefined; })[]; };