import { type UIComponent, type IGraphProps, type IUIComponentHandler } from "../types"; type $$ComponentProps = { component: UIComponent & { properties: Partial; }; onPropertyChange: (updates: Partial<{ properties?: string | object; name?: string; access?: string; eventHandler?: IUIComponentHandler; }>) => void; forConstructor?: boolean; }; declare const GraphProps: import("svelte").Component<$$ComponentProps, {}, "">; type GraphProps = ReturnType; export default GraphProps;