import { GraphEdge } from "../../globals/panther/models.edges"; import { FullPantherEntity } from "../../globals/panther/models.nodes"; /** * Parses a JSON object representing nodes and relationships (edges) from the Arrows JSON. * * @param body - The input JSON object to parse. Expected to contain `nodes` and `relationships` arrays. * @returns An object containing parsed `nodes` and `edges` arrays. * @throws {InvalidRequestError} If the input is not a valid object, or if required properties are missing or not arrays. */ export declare const parseArrowsJson: (body: unknown) => { nodes: FullPantherEntity[]; edges: GraphEdge[]; };