export interface SolutionItem {
    position: string;
    actualWidth: string;
    minWidth: string;
    form: 'full' | 'standard' | 'minimal';
    type: 'start' | 'storage' | 'job' | 'end';
    description: string;
}
