/** * @author: yanxianliang * @date: 2025-08-23 23:50 * @modified:2025/8/23 23:50 by yanxianliang * @desc: 属性 Provider * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { IBaseGraphProps, IBaseGraphStateWithOmitProps } from "../.."; import React from "react"; export declare const GraphPropsContext: React.Context<{ props: IBaseGraphProps; getProps: () => IBaseGraphProps; }>; export declare const GraphPropsProvider: >({ children, props }: { children: React.ReactNode; props: GraphProps; }) => import("react/jsx-runtime").JSX.Element;