import { PhysicalLocation, Device, List, IncidentPerson, IncidentProcedure, IncidentPriority, IncidentStatus, IncidentType } from '../../..';
declare const _default: {
    new (): {
        /**
         * ID
         */
        _id: number;
        id: number;
        /**
         * Descrição
         */
        _description: string;
        description: string;
        /**
         * Local Físico
         */
        _physicalLocation: PhysicalLocation;
        physicalLocation: PhysicalLocation;
        /**
         * Tipo de Incidente
         */
        _incidentType: IncidentType;
        incidentType: IncidentType;
        /**
         * Prioridade do Incidente
         */
        _incidentPriority: IncidentPriority;
        incidentPriority: IncidentPriority;
        /**
         * Usuário
         */
        _userId: number;
        userId: number;
        /**
         * Dispositivo
         */
        _device: Device;
        device: Device;
        /**
         * Status do Incidente
         */
        _status: IncidentStatus;
        status: IncidentStatus;
        /**
         * Data da Criação
         */
        _creationDate: Date;
        creationDate: Date;
        /**
         * Data
         */
        _incidentDate: Date;
        incidentDate: Date;
        /**
         * Timezone offset
         */
        _timezoneOffset: number;
        timezoneOffset: number;
        /**
         * Tramites
         */
        _procedures: List<IncidentProcedure>;
        procedures: List<IncidentProcedure>;
        /**
         * Pessoas
         */
        _people: List<IncidentPerson>;
        people: List<IncidentPerson>;
        toJsonString(): string;
        replaceArray(json: string): string;
        toJson(): any;
        isArray(what: any): boolean;
    };
};
export = _default;
