export declare class CalculateDiscountDto {
    code: string;
    isService: boolean;
    orderTotal: number;
    totalWage: number;
    runValidations: boolean;
}
