import React from "react"; import { ViewItem } from "../shared/interfaces"; import { ContentItemActions } from "@next-libs/basic-components"; export interface BuilderGraphComponentProps { data: ViewItem[]; contentItemActions?: ContentItemActions; wrapAnApp?: boolean | "auto"; onReorderClick?: (node: ViewItem) => void; onNodeClick?: (node: ViewItem) => void; onDragEnd?: (offsetX: number, offsetY: number) => void; initialOffsetX?: number; initialOffsetY?: number; } export declare function BuilderGraphComponent(props: BuilderGraphComponentProps): React.ReactElement;