export declare class QuoteItem {
    readonly id: string;
    organizationId: string;
    quoteId: string;
    productId: string;
    quantity: number;
    unitPrice: number;
    totalPrice: number;
    notes: string | null;
    createdAt: Date;
    updatedAt: Date;
    constructor(id: string, organizationId: string, quoteId: string, productId: string, quantity: number, unitPrice: number, totalPrice: number, notes: string | null, createdAt: Date, updatedAt: Date);
    updateQuantity(newQuantity: number): void;
    updateUnitPrice(newUnitPrice: number): void;
    updateNotes(newNotes: string | null): void;
}
//# sourceMappingURL=QuoteItem.d.ts.map