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