/* Copyright IBM Corp. 2018 */ import { OnDestroy, Type } from '@angular/core'; import { RenderingContext } from './../../../api'; export declare class LayoutMappingService implements OnDestroy { registerMapping: (aId: string | string[], aSelector: string | string[] | Type, aLayoutMode?: string | string[]) => void; getSelector: (aLayoutMode: string, aRenderingContext: RenderingContext) => string | undefined; ngOnDestroy: () => void; constructor(); }