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