import { TwoslashTypesCache } from "@shikijs/twoslash"; //#region src/cache-fs.d.ts interface FileSystemTypeResultCacheOptions { /** * The directory to store the cache files. * * @default '.vitepress/cache/twoslash' */ dir?: string; } declare function createFileSystemTypesCache(options?: FileSystemTypeResultCacheOptions): TwoslashTypesCache; //#endregion export { FileSystemTypeResultCacheOptions, createFileSystemTypesCache };