import type { ApiEndpoint } from "../../types/index.js"; import type { Tenant } from "@webiny/api-core/types/tenancy.js"; interface GenerateCacheIdParams { type: ApiEndpoint; getTenant: () => Tenant; } export declare const generateCacheId: (params: GenerateCacheIdParams) => string; export {};