import { Type } from '@angular/core'; import { Layout } from '../models/Layout'; import { Surface } from '../models/Surface'; export declare class DashboardsLayoutService { private layouts; constructor(); register(layoutType: string, surfaceComponent: Type): void; getLayout(layoutType: string): Layout; getSurfaceComponent(layoutType: string): Type; private exists(layoutType); }