import type { SelectionModelConfig, SelectionModelReturn } from './selectionModel.types';
export declare function selectionModel<T>(options?: SelectionModelConfig<T>): SelectionModelReturn<T>;
/**
 * Returns an error that reports that multiple values are passed into a selection model
 * with a single value.
 */
export declare function getMultipleValuesInSingleSelectionError(): Error;
