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