import React from 'react'; import { Symbol } from 'd3-shape'; export declare type GlyphCrossProps = { /** 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 cross in px, or an accessor which takes Datum as input and returns a size. */ size?: number | ((d: Datum) => number); }; export default function GlyphCross({ children, className, top, left, size, ...restProps }: GlyphCrossProps & Omit, keyof GlyphCrossProps>): JSX.Element; //# sourceMappingURL=GlyphCross.d.ts.map