import { CouponStatus, CouponValueType } from '@prisma/client';
export declare class UpdateCouponDto {
    title?: string;
    shortDescription?: string;
    longDescription?: string;
    cashiCoinsCost?: number | null;
    cashiPointsCost?: number | null;
    valueType?: CouponValueType;
    valueFixed?: number | null;
    valuePercent?: number | null;
    minOrderValue?: number | null;
    totalCoupons?: number | null;
    distributionBid?: number | null;
    status?: CouponStatus;
    activeAt?: string | null;
    expiresAt?: string | null;
    design?: unknown | null;
    imageUrl?: string | null;
}
