import { MultiCacheServerOptions } from '../dist/runtime/types/index.js'; /** * Define nuxt-multi-cache server options. */ declare function defineMultiCacheOptions(options: () => MultiCacheServerOptions): () => MultiCacheServerOptions; /** * Use the signature to pass a method that returns the options instead. * @deprecated * * @example * ```typescript * export default defineMultiCacheOptions(() => { * return { * // ... * } * }) * ``` */ declare function defineMultiCacheOptions(options: MultiCacheServerOptions): () => MultiCacheServerOptions; export { defineMultiCacheOptions };