import { ApplicationNodeWithNeighbours, DatasourceWithNeighbours, FullPantherEntityWithNeighboursAsProp, PantherEntityWithNeighbours, PeriodWithNeighbours, PlaceWithNeighbours } from '../models/models.metadata'; /** * Parse and validate all types of backend nodes from panther response * @param data Anything from panther * @returns Sorted and validated nodes from the response */ export declare const parseNodesFromPanther: (data: unknown) => { applicationsNode: ApplicationNodeWithNeighbours; datasourceNodes: DatasourceWithNeighbours[]; layerNodes: PantherEntityWithNeighbours[]; placeNodes: PlaceWithNeighbours[]; styleNodes: FullPantherEntityWithNeighboursAsProp[]; periodNodes: PeriodWithNeighbours[]; };