import { Const } from './enums'; export type Status = 'optimal' | 'feasible' | 'infeasible' | 'no_feasible' | 'unbounded' | 'undefined'; export type StatusSimplex = Status; export type StatusInterior = 'undefined' | 'optimal' | 'infeasible' | 'no_feasible'; export type StatusMIP = 'undefined' | 'optimal' | 'feasible' | 'no_feasible'; export declare function getStatus(stat: Const.Status): Status;