export declare enum VacancySituationDto {
    /**
     * Em andamento.
     */
    IN_PROGRESS = 0,
    /**
     * Encerrado.
     */
    CLOSED = 1,
    /**
     * Cancelado.
     */
    CANCELED = 2
}
