import type { SVGProps } from 'react'; export type NodeProps = { cx?: number; cy?: number; node?: unknown; }; export default function DefaultNode({ r, fill, node, // Accept but don't use the node prop ...rest }: NodeProps & Omit, keyof NodeProps>): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DefaultNode.d.ts.map