import type { TCluster } from "../../config/types/index.d.mts"; /** * Получает данные о кластере при клике на метку * @returns {{ * nextClusters: TCluster[]; * nextIsActive: boolean; * }} */ declare const getNextClustersByPointClick: ({ clusters, pointId, maxActivePoints, }: { clusters: TCluster[]; pointId: string; maxActivePoints?: number; }) => { nextClusters: TCluster[]; nextIsActive: boolean; }; export { getNextClustersByPointClick, };