import type { Storage } from 'unstorage'; import type { OgImageOptions, RuntimeFontConfig } from '../../../types.js'; export declare const htmlPayloadCache: Storage<{ expiresAt: number; value: OgImageOptions; }>; export declare const prerenderOptionsCache: Storage | undefined; export declare const emojiCache: Storage; declare class BoundedMap { private max; private map; constructor(max: number); get(key: string): V | undefined; set(key: string, value: V): void; } export declare const fontCache: BoundedMap; export declare const fontArrayCache: BoundedMap; export {};