/** @packageDocumentation * @module QuantityFormat */ import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; import type { FormatProps } from "@itwin/core-quantity"; /** Properties of [[MiscFormatOptions]] component. * @alpha * @deprecated in 4.17.0. Use `React.ComponentProps` */ export interface MiscFormatOptionsProps extends CommonProps { formatProps: FormatProps; onChange?: (format: FormatProps) => void; enableMinimumProperties?: boolean; showOptions: boolean; onShowHideOptions: (show: boolean) => void; children?: React.ReactNode; } /** Component use to set miscellaneous properties is a Formatted Quantity. * @alpha */ export declare function MiscFormatOptions(props: MiscFormatOptionsProps): React.JSX.Element; //# sourceMappingURL=MiscFormatOptions.d.ts.map