export interface IWorkArea {
    id: string;
    lockElement: {
        name: string;
        type: string;
        environment: string;
        system: string;
        subsystem: string;
    };
    environment: string;
    systems: IWorkAreaSystem[];
}
interface IWorkAreaSystem {
    from: string;
    to: string;
    subsystems: IWorkAreaSubsystem[];
}
interface IWorkAreaSubsystem {
    from: string;
    to: string;
}
export {};
