/** @packageDocumentation * @module QuantityFormat */ import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; import { ShowSignOption } from "@itwin/core-quantity"; /** Properties of [[SignOptionSelector]] component. * @internal */ export interface SignOptionSelectorProps extends CommonProps { signOption: ShowSignOption; onChange: (value: ShowSignOption) => void; } /** Component use to set Sign option. * @internal */ export declare function SignOptionSelector(props: SignOptionSelectorProps): React.JSX.Element; //# sourceMappingURL=SignOption.d.ts.map