import { NgStoryblokCacheFeature } from './_features.config'; /** * Provides the Storyblok cache configuration. * * When using Angular SSR, it is recommended to disable the cache. * ```ts * import { withCacheConfig } from '@geometricpanda/ng-storyblok/config'; * ... * provideNgStoryblok(..., withCacheConfig({type: 'none'})); * ``` * * @param config The Storyblok cache configuration. * @returns The provider for the Storyblok cache configuration. */ export declare function withCache(): NgStoryblokCacheFeature;