import { SeltPrelocEnum } from './SeltPrelocEnum';
import { SeltStateEnum } from './SeltStateEnum';
import { SeltStatusEnum } from './SeltStatusEnum';
/** Customer answers for line diagnostic */
export interface SeltResult {
    /** SELT test running date */
    date?: string;
    /** Distance of the problem identified on the line (by SELT test), from NRA to customer */
    distance?: number;
    /** Prelocalization of the problem */
    preloc?: SeltPrelocEnum;
    /** Problem type identified by SELT test */
    state?: SeltStateEnum;
    /** SELT test status */
    status?: SeltStatusEnum;
}
//# sourceMappingURL=SeltResult.d.ts.map