/** @packageDocumentation * @module QuantityFormat */ import { CommonProps } from "@bentley/ui-core"; import { FormatProps } from "@bentley/imodeljs-quantity"; /** Properties of [[FormatUnitLabel]] component. * @alpha */ 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): JSX.Element; //# sourceMappingURL=FormatUnitLabel.d.ts.map