import { Type } from '@angular/core';
export interface ITile<T> {
    ownData: T;
    component: Type<any>;
    arguments?: Array<any>;
    canRemove: boolean;
    type?: string;
    getDataForState(): any;
}
