import { SelectionContextValue } from '../context'; /** * Provides typed access to SelectionContext including selection state * and the optional configuration object provided by the parent. * * @typeParam T Optional configuration object type provided by the parent. * * @returns The current selection context value. * * @example * const { values, toggle, config } = useSelection(); * * @category Hooks */ export declare function useSelection(): SelectionContextValue;