import { default as generateDefaultPointsPath } from './default'; import { default as generateCirclePointsPath } from './circle'; import { PointFactoryProps } from '../../types'; export declare const pointsMap: { default: typeof generateDefaultPointsPath; circle: typeof generateCirclePointsPath; }; declare function getPoints(type: keyof typeof pointsMap): (options: PointFactoryProps) => string; export default getPoints;