/** @packageDocumentation * @module QuantityFormat */ import { CommonProps } from "@bentley/ui-core"; import { FormatProps } from "@bentley/imodeljs-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): JSX.Element; //# sourceMappingURL=ThousandsSeparator.d.ts.map