import { SwaggerEnumType } from '@nestjs/swagger/dist/types/swagger-enum.type'; import { ParamOptions } from '../helpers/get-params.helper'; type EnumsParamOptions = ParamOptions & { enum: SwaggerEnumType; separator?: string; description?: string; singleValue?: boolean; example?: string; }; export declare function EnumQuery(options: EnumsParamOptions): (target: any, key: string, descriptor: any) => void; export declare function EnumsQuery(options: EnumsParamOptions): (target: any, key: string, descriptor: any) => void; export {};