import { OptionModel } from './option.model'; import { ArmaModel } from './arma.model'; import { BaseActivoModel } from './base-activo.model'; export declare class ArmaExpedienteModel extends BaseActivoModel { id: number; idArma: number; idExpediente: number; notas: string; arma: ArmaModel; motivo: OptionModel; tiempoAtencion: string; tabActiva: number; check?: boolean; estatus?: string; folioLlamado?: string; }