import { CarouselData } from '../types/carousel.ts';
import { MediaData } from '../types/player-api-types.ts';
import { LiveStreamEventData } from '../types/live-stream-event.ts';
export declare const getMediaDataFromCache: (hashedId: string) => MediaData | null | undefined;
export declare const cacheMediaData: (hashedId: string, data: MediaData) => void;
export declare const uncacheMediaData: (hashedId: string) => void;
export declare const cacheLiveStreamEventData: (hashedId: string, data: LiveStreamEventData) => void;
export declare const uncacheLiveStreamEventData: (hashedId: string) => void;
export declare const getLiveStreamEventDataFromCache: (hashedId: string) => LiveStreamEventData | null | undefined;
export declare const getCarouselDataFromCache: (hashedId: string) => CarouselData | null | undefined;
export declare const cacheCarouselData: (hashedId: string, data: CarouselData) => void;
export declare const uncacheCarouselData: (hashedId: string) => void;
//# sourceMappingURL=remote-data-cache.d.ts.map