/** @packageDocumentation * @module QuantityFormat */ import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; import type { FormatProps } from "@itwin/core-quantity"; /** Properties of [[ThousandsSeparator]] component. * @internal */ export interface ThousandsSeparatorProps extends CommonProps { formatProps: FormatProps; onChange?: (format: FormatProps) => void; } /** Component use to set Quantity Format thousand group separator. * @internal */ export declare function ThousandsSeparator(props: ThousandsSeparatorProps): React.JSX.Element; //# sourceMappingURL=ThousandsSeparator.d.ts.map