import type { RawVector3 } from '../vec3/RawVector3'; import type { RawLine3 } from './RawLine3'; /** * Return a vector that represents delta of given line. * * @param line A line */ export declare function line3Delta(line: RawLine3): RawVector3;