import { RenderingLayer } from './models.layers'; import { ApplicationNodeWithNeighbours, DatasourceWithNeighbours } from './models.metadata'; /** * Parse backend datasource nodes into rendering layers usinf application configuration context (mainly layer tree) * @param datasourceNodes Panther datasource nodes for the application * @param applicationNode Application node from the Panther * @returns List of layers with full context needed to be rendered */ export declare const parseDatasourcesToRenderingLayers: (datasourceNodes: DatasourceWithNeighbours[], applicationNode: ApplicationNodeWithNeighbours) => RenderingLayer[];