export class Estimator { constructor(projectionTransform: any); projectionTransform: any; estimate({ screenCoords, worldCoords }: { screenCoords: any; worldCoords: any; }): number[][]; refineEstimate({ initialModelViewTransform, worldCoords, screenCoords }: { initialModelViewTransform: any; worldCoords: any; screenCoords: any; }): never[][] | null; }