import { OnChanges } from '@angular/core'; import { ShortResInfo } from '../list-view/list-view.component'; export declare class MultipleResourcesViewComponent implements OnChanges { /** * number of resources */ noOfResources?: number; /** * resource ids */ resourceIds?: string[]; /** * list of resources with id and label */ resources?: ShortResInfo[]; topRow: any[]; bottomRow: any[]; constructor(); ngOnChanges(): void; }