import { OptionModel } from './option.model'; import { SustentoLegalModel } from './sustento-legal.model'; export declare class SustentoExpedienteModel { id: number; idSustento: number; idExpediente: number; principal: boolean; idDelito: number; idModalidad: number; nombreDelito: string; sustentoLegalDTO: SustentoLegalModel; sustento: OptionModel; delito: OptionModel; modalidad: OptionModel; tiempoAtencion: string; tabActiva: number; createdBy?: string; activo?: boolean; check?: boolean; estatus?: string; updatedBy?: string; }