/** * Custom hook to get collection mutations from the data store. * @param collectionName - The name of the collection to filter mutations by. * @returns - An array of filtered mutations. */ export default function useCollectionMutations(collectionName: string): { id: any; time: Date; type: any; selector: any; modifier: any; callstack: any; }[];