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