import * as React from "react";
import { SourceIdentifierInterface, DataItemIdentifierInterface, DataItemDimensionIdentifierInterface, DataItemSelectionInterface } from "..";
interface Props {
    selectionOptions?: DataItemSelectionInterface;
    selection: SourceIdentifierInterface[] | DataItemIdentifierInterface[] | DataItemDimensionIdentifierInterface[];
    onSelection: (nextValue: SourceIdentifierInterface[] | DataItemIdentifierInterface[] | DataItemDimensionIdentifierInterface[]) => void;
    style?: React.CSSProperties;
}
export declare const DataSelect: React.NamedExoticComponent<Props>;
export {};
