/** @packageDocumentation * @module QuantityFormat */ import * as React from "react"; import type { UnitsProvider } from "@itwin/core-quantity"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[UnitDescr]] component. * @internal */ export interface UnitDescrProps extends CommonProps { name: string; parentUnitName?: string; label: string; index: number; unitsProvider: UnitsProvider; readonly?: boolean; onUnitChange: (value: string, index: number) => void; onLabelChange: (value: string, index: number) => void; } /** Component use to display dropdown list of possible units. * @internal */ export declare function UnitDescr(props: UnitDescrProps): React.JSX.Element; //# sourceMappingURL=UnitDescr.d.ts.map