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