import { Type } from '@nestjs/common'; declare class PropertyArrayParams { isOptional?: boolean; isNotEmpty?: boolean; isUnique?: boolean; type: Type | Function | [Function] | 'array' | 'string' | 'number' | 'boolean' | 'integer' | 'null'; enumValue?: any[] | Record; maxSize?: number; name?: string; } export declare function ApiPropertyArray({ isOptional, isNotEmpty, isUnique, type, enumValue, maxSize, name }: PropertyArrayParams): (target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor | undefined) => void; export {};