import { RedisClientType } from "redis"; export declare const FetchApiCache: (key: string, client: RedisClientType) => Promise; export declare const DeleteApiCache: (key: string, client: RedisClientType) => Promise; export declare const WriteApiCache: (key: string, data: Record, client: RedisClientType, ttl?: number) => void;