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