import { SelectionType } from '../types'; export declare const useSelections: () => { selections: Record; setSelections: import("react").Dispatch>>; addSelection: (selection: SelectionType, identifier: string) => Promise; updateSelection: (id: string, updatedSelection: SelectionType, identifier: string) => Promise; removeSelection: (selection: SelectionType, identifier: string) => void; };