/** @packageDocumentation * @module QuantityFormat */ import { FormatterSpec } from "@bentley/imodeljs-quantity"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[FormatSample]] component. * @alpha */ export interface FormatSampleProps extends CommonProps { formatSpec?: FormatterSpec; initialMagnitude?: number; hideLabels?: boolean; } /** Component to show the persistence value and formatted value given a FormatterSpec. * @alpha */ export declare function FormatSample(props: FormatSampleProps): JSX.Element; //# sourceMappingURL=FormatSample.d.ts.map