import { ScreenListNatureEnum } from './ScreenListNatureEnum';
import { ScreenListTypeEnum } from './ScreenListTypeEnum';
/** Screen list */
export interface ScreenList {
    /**  */
    callNumber: string;
    /**  */
    id: number;
    /**  */
    nature: ScreenListNatureEnum;
    /**  */
    status: string;
    /**  */
    type: ScreenListTypeEnum;
}
//# sourceMappingURL=ScreenList.d.ts.map