import { isString, isUUID } from 'class-validator'; import { INTEGRATION_TYPE } from './enum'; export declare const permittedQueryParamsIntegrationEntity: { 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: INTEGRATION_TYPE[]; internalKey?: undefined; transform?: undefined; })[]; };