/** @packageDocumentation * @module QuantityFormat */ import * as React from "react"; import type { QuantityTypeArg } from "@itwin/core-frontend"; import type { FormatProps } from "@itwin/core-quantity"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[QuantityFormatPanel]] component. * @alpha * @deprecated in 4.17.0. Use `React.ComponentProps` */ export interface QuantityFormatPanelProps extends CommonProps { quantityType: QuantityTypeArg; onFormatChange?: (format: FormatProps) => void; /** props below are to be passed on to FormatPanel */ showSample?: boolean; initialMagnitude?: number; enableMinimumProperties?: boolean; } /** Component to set properties that control Quantity Formatting. * @alpha */ export declare function QuantityFormatPanel(props: QuantityFormatPanelProps): React.JSX.Element; //# sourceMappingURL=QuantityFormatPanel.d.ts.map