/** @packageDocumentation * @module QuantityFormat */ import * as React from "react"; import type { FormatterSpec } from "@itwin/core-quantity"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[FormatSample]] component. * @alpha * @deprecated in 4.17.0. Use `React.ComponentProps` */ 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): React.JSX.Element; //# sourceMappingURL=FormatSample.d.ts.map