/// import type { SelectionManagerProviderProps, SelectionStateListener, UseSelectionManager } from "./SelectionManagerTypes"; export declare function SelectionManagerProvider(props: SelectionManagerProviderProps): JSX.Element; interface useSelectionManagerArgs { totalItemCount?: number; onChangeSelection?: SelectionStateListener; } export declare function useSelectionManager(args?: useSelectionManagerArgs): UseSelectionManager; export {};