import { CommonEntityData } from './common'; export declare const TYPE = "POINT"; export interface PointEntityData extends CommonEntityData { type: typeof TYPE; x: number; y: number; z: number; thickness?: number; } export declare const process: (tuples: [type: number, value: any][]) => PointEntityData; declare const _default: { TYPE: string; process: (tuples: [type: number, value: any][]) => PointEntityData; }; export default _default;