import { Algorithm } from './addon'; import { IGateway } from './IGateway'; import { IOrientation } from './IOrientation'; export declare class Calibrator { private algorithm; constructor(algorithm: Algorithm, gateway: IGateway, av: number[], mv: number[]); addSample(expectedPoint: number[], realPoint: number[]): void; clearSamples(): void; compute(): IOrientation; }