import type { DXFTuple, PartialPoint3D } from '../../types'; export declare const TYPE = "RAY"; interface RayEntity { type: typeof TYPE; start: PartialPoint3D; direction: PartialPoint3D; [key: string]: unknown; } export declare const process: (tuples: DXFTuple[]) => RayEntity; declare const _default: { TYPE: string; process: (tuples: DXFTuple[]) => RayEntity; }; export default _default; //# sourceMappingURL=ray.d.ts.map