import { BufferGeometry, Vector2 } from 'three';
import type { CadGeometryType, gp_Pnt2d } from '../CadCommon';
import { CadObject } from '../CadObject';
export declare function cadPnt2dToObject3D(cadObject: CadObject<CadGeometryType.POINT_2D>): import("three").Points<BufferGeometry<import("three").NormalBufferAttributes>, import("three").Material | import("three").Material[], import("three").Object3DEventMap>;
export declare function cadPnt2dTransform(point: gp_Pnt2d, t: Vector2): void;
export declare function cadPnt2dClone(src: gp_Pnt2d): import("../build/polygonjs-occt").gp_Pnt2d_3;
