import React from "react";
import { VictoryCommonPrimitiveProps } from "../victory-util/common-props";
import { ScatterSymbolType } from "./types";
export interface PointProps extends VictoryCommonPrimitiveProps {
    datum?: any;
    getPath?: (x: number, y: number, size: number) => string;
    pathComponent?: React.ReactElement;
    size?: number | Function;
    symbol?: ScatterSymbolType | Function;
    x?: number;
    y?: number;
}
export declare const Point: (initialProps: PointProps) => React.DetailedReactHTMLElement<any, HTMLElement>;
//# sourceMappingURL=point.d.ts.map