import React from 'react'; import { Symbol } from 'd3-shape'; export declare type GlyphDiamondProps = { /** Render function override which is passed the configured path generator. */ children?: ({ path }: { path: Symbol; }) => React.ReactNode; /** classname to apply to glyph path element. */ className?: string; /** Top offset to apply to glyph g element container. */ top?: number; /** Left offset to apply to glyph g element container. */ left?: number; /** Size of diamond in px, or an accessor which takes Datum as input and returns a size. */ size?: number | ((d: Datum) => number); }; export default function GlyphDiamond({ children, className, top, left, size, ...restProps }: GlyphDiamondProps & Omit, keyof GlyphDiamondProps>): JSX.Element; //# sourceMappingURL=GlyphDiamond.d.ts.map