import { IntervinienteModel } from './interviniente.model'; import { SustentoExpedienteModel } from './sustento-expediente.model'; import { ProcesoLugarExpedienteModel } from './proceso-lugar-expediente.model'; export declare class ProcesoModel { id: number; idImputado: number; idEstatus: number; idSustentoExpediente: number; idVictima: number; imputado: IntervinienteModel; victima: IntervinienteModel; sustentoExpediente: SustentoExpedienteModel; nombreImputado: string; nombreVictima: string; nombremodalidad: string; lugares: Array; }