/** @packageDocumentation * @module QuantityFormat */ import { CommonProps } from "@bentley/ui-core"; /** Properties of [[StationSeparatorSelector]] component. * @internal */ export interface StationSeparatorSelectorProps extends CommonProps { separator: string; disabled: boolean; onChange: (value: string) => void; } /** Component use to setStation separator. * @internal */ export declare function StationSeparatorSelector(props: StationSeparatorSelectorProps): JSX.Element; //# sourceMappingURL=StationSeparatorSelector.d.ts.map