import { ExtensionBase } from '../ExtensionBase'; /** * An extension that allows you to determine the coordinates of a point on the face. * @deprecated CoordinatesExtension has been deprecated. Use MeasureExtension instead. */ export declare class CoordinatesExtension extends ExtensionBase { static getName: () => string; content: any; /** Whether the measurement command is active or not. */ isActive: boolean; /** * Enables or disables the coordinates measurement mode. */ switchCoordinatesMode(): void; /** * @param viewerName - Owner viewer name. */ constructor(viewerName: string); added(): void; deleted(): void; }