import * as React from "react";
import { DataItemHistorySelectionInterface, DataItemDimensionHistoryOptionsInterface } from "..";
interface Props {
    value: DataItemDimensionHistoryOptionsInterface;
    onChange: (nextValue: DataItemDimensionHistoryOptionsInterface) => void;
    options?: DataItemHistorySelectionInterface;
    style?: React.CSSProperties;
}
export declare function DataItemHistoryOptionsPicker({ style, options, value, onChange, }: Props): JSX.Element;
export {};
