declare enum StatusHistoric {
    /**
    * Futuro
    */
    FUTURE = "FUTURE",
    /**
     * Presente
     */
    PRESENT = "PRESENT",
    /**
     * Passado
     */
    PAST = "PAST"
}
export = StatusHistoric;
