import { OrdenTrabajo } from "../../ots/entities/orden-trabajo.entity";
import { CotizacionLinea } from "./cotizacion-linea.entity";
export declare enum EstadoCotizacion {
    BORRADOR = "borrador",
    ENVIADA = "enviada",
    APROBADA = "aprobada",
    RECHAZADA = "rechazada"
}
export declare class Cotizacion {
    id: number;
    otId: number;
    ordenTrabajo: OrdenTrabajo;
    numeroCotizacion: string;
    subtotal: number;
    iva: number;
    total: number;
    estado: EstadoCotizacion;
    fechaAprobacion: Date;
    aprobadoPor: string;
    notas: string;
    localId: string;
    version: number;
    createdAt: Date;
    updatedAt: Date;
    lineas: CotizacionLinea[];
}
