import React from "react"; import { TemporalDate } from "../../hooks/use-graph/use-graph"; import { ComponentProps } from "react"; type Props = Omit, "x" | "y"> & { x: number | string | TemporalDate; y: number | string | TemporalDate; }; export declare const OverlayDiamond: ({ x, y, ...rest }: Props) => React.JSX.Element; export {};