import { InvoiceItemDto } from "src/invoice/dto/invoice-item.dto";
import { DiscountType, TaxType } from "src/common/constant/enum.constant";
import { EstimateStatus } from "src/common/constant/enum.constant";
export declare class CreateEstimationDto {
    estimateNo: string;
    clientId: string;
    expiryDate?: string;
    items: InvoiceItemDto[];
    discountType: DiscountType;
    discountValue: number;
    taxPercentage?: number;
    taxType: TaxType;
    taxName: string;
    currency: string;
    status?: EstimateStatus;
}
