import * as React from "react";
interface Props {
    value: [string, number];
    onChange: (nextValue: [string, number]) => void;
    placeholder?: string;
    style?: React.CSSProperties;
}
export declare const DataItemValuePicker: React.FC<Props>;
export {};
