import { AxisType, CursorValueType, VectorCursorType } from '../../shared/types/vector.type'; import { DescartesCoordinatesType } from '../../shared/types/descartes-coordinates.type'; declare function createCoordinates(x: number, y: number): DescartesCoordinatesType; declare function createCoord(axis: AxisType, coord: number): T; declare function createVectorCursor(x: CursorValueType, y: CursorValueType): VectorCursorType; declare function createCursor(n: CursorValueType): T; export { createCoordinates, createVectorCursor, createCoord, createCursor };