import { StackedLayoutService } from './stacked-layout.service'; import { TiledLayoutService } from './tiled-layout.service'; import { Item } from '../item'; import { LayoutStrategy } from './layout-strategy.enum'; import * as i0 from "@angular/core"; export declare class LayoutSelectorService { private readonly stackedLayout; private readonly tiledLayout; constructor(stackedLayout: StackedLayoutService, tiledLayout: TiledLayoutService); /** * Does the layout of the an {@link Item} list using the selected strategy * @param items The Items to lay out * @param strategy The {@link LayoutStrategy} to use to layout the items */ doLayout(items: Item[], strategy?: LayoutStrategy): Item[][]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }