/** @packageDocumentation * @module Tools */ import { Tool } from "@itwin/core-frontend"; /** Controls whether quantities are formatted using imperial or metric units. * Such formatting is used in many places; one example is the output of the MeasureTool. * @beta */ export declare class ChangeUnitsTool extends Tool { static toolId: string; static get minArgs(): number; static get maxArgs(): number; run(useMetric?: boolean): Promise; parseAndRun(...args: string[]): Promise; } //# sourceMappingURL=ChangeUnitsTool.d.ts.map