import { SelectedData } from './utils/constants';
export interface SelectionManagerStoreState {
    selected: SelectedData | null;
    master: HTMLElement | null;
    enableSelection: boolean;
    selectFirstOne: boolean;
    allowReselection: boolean;
}
declare const defaultStoreData: SelectionManagerStoreState;
export default defaultStoreData;
