/** * Options to customize the PropertyLimit decorator. */ type LimitOptions = { /** Default number of results if none is provided (default: 10) */ default?: number; /** Maximum allowed limit value (optional, default: 100) */ max?: number; }; /** * Adds validation and transformation for a "limit" parameter controlling the max number of returned items. * Accepts optional parameters to configure default and maximum limits. * * @param {LimitOptions} [opts={}] - Configuration options for limit behavior. * @returns {PropertyDecorator} Decorator applying validation and Swagger metadata. */ export declare function PropertyLimit(opts?: LimitOptions): PropertyDecorator; export {};