import { ArrayType } from '../../models/types'; import { ThreadModel } from '../../models/ThreadModel'; export type ThreadGroupType = { groupKey: string; thread: ThreadModel; time: number; }; export type ListGroupType = { label: string; timestamp: number; id: string; }; export declare const useThreadsGroupedList: (threads: ArrayType) => { groupsValues: ListGroupType[]; threadsInGroup: ThreadGroupType[]; };