/** * Property decorator factory that requires a numeric field to be greater than * or equal to `minimum`. Non-numeric values fail. Reuses the existing * {@link minValue} validator. * * @param minimum - The smallest accepted value. * @returns A property decorator. * * @example * ```typescript * class Account { * @Min(0) balance = 0; * } * ``` */ export declare const Min: (minimum: number) => (target: object, propertyKey: string | symbol) => void;