import { Point, PointType } from '../models/point'; export interface Geometry { SWEREF99TM: Point | null; WGS84: Point | null; } export interface RawGeometry { SWEREF99TM: string; WGS84: string; } export declare function parseGeometry(rawInput: RawGeometry): Geometry;