import type { Path, ValueProps } from '../../types';
export type ValueSelectionProps = ValueProps<string> & {
    dataPath?: Path;
};
declare function Selection(props: ValueSelectionProps): import("react/jsx-runtime").JSX.Element;
export default Selection;
