export type StateType = { queryString: string; currentIndex: number; matchesMap: MatchType[]; }; export default { queryString: '', currentIndex: -1, matchesMap: [], };