import { BaseDecoratorOptions } from '../types'; declare type PropertyNumberParams = { min?: number; max?: number; each?: boolean; } & BaseDecoratorOptions; export declare function ApiPropertyNumber({ isOptional, each, min, max, ...options }?: PropertyNumberParams): PropertyDecorator; export {};