import type { TransactionsRecord } from "@olenbetong/appframe-updater"; type TransactionsLike = Pick; type UseTransactionsSelectionResult = { selectedPrimKeys: Set; toggleSelection: (primKey: string | null | undefined) => void; resetSelection: () => void; }; export declare function useTransactionsSelection(transactions: TransactionsLike[]): UseTransactionsSelectionResult; export {};