/** @packageDocumentation * @module QuantityFormat */ import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; import type { FormatProps } from "@itwin/core-quantity"; /** Properties of [[FormatUnitLabel]] component. * @alpha * @deprecated in 4.17.0. Use `React.ComponentProps` */ export interface FormatUnitLabelProps extends CommonProps { formatProps: FormatProps; onUnitLabelChange?: (format: FormatProps) => void; } /** Component to set the label separator definition in a Quantity Format and if it the label is to be displayed. * @alpha */ export declare function FormatUnitLabel(props: FormatUnitLabelProps): React.JSX.Element; //# sourceMappingURL=FormatUnitLabel.d.ts.map