import { UpdateFilter } from "mongodb"; import type { ChannelCache } from "../../types/niche.types.js"; export declare class NicheRepository { private readonly CHANNELS_CACHE_COLLECTION; findChannelsByIds(ids: string[]): Promise; updateChannel(channelId: string, updates: UpdateFilter): Promise; }