/** * Options to customize the PropertySkip decorator. */ type SkipOptions = { /** Default number of items to skip (default: 0) */ default?: number; }; /** * Adds validation and transformation for a "skip" parameter controlling how many items to skip. * Accepts optional parameter to configure default value. * * @param {SkipOptions} [opts={}] - Configuration options for skip behavior. * @returns {PropertyDecorator} Decorator applying validation and Swagger metadata. */ export declare function PropertySkip(opts?: SkipOptions): PropertyDecorator; export {};