import React from 'react'; import { Dispatch, SetStateAction } from 'react'; import { SelectionType } from '../types'; export declare const SelectionsContext: React.Context<{ selections: Record; setSelections: Dispatch>>; } | null>; type SelectionProviderType = { children: React.ReactNode; }; export declare const SelectionProvider: ({ children }: SelectionProviderType) => import("react/jsx-runtime").JSX.Element; export {};