/** @packageDocumentation * @module Settings */ import * as React from "react"; import type { UnitSystemKey } from "@itwin/core-quantity"; /** Props for [[UnitSystemSelector]] * @beta */ export interface UnitSystemSelectorProps { selectedUnitSystemKey: UnitSystemKey; onUnitSystemSelected: (unitSystem: UnitSystemKey) => void; availableUnitSystems: Set; } /** Select control to set the "active" Presentation Unit System. This setting determine what units are display for quantity values (i.e. foot vs meter). * @alpha */ export declare function UnitSystemSelector(props: UnitSystemSelectorProps): React.JSX.Element; //# sourceMappingURL=UnitSystemSelector.d.ts.map