import type { ParsedContent } from '@nuxt/content/types'; import type { PreviewFile } from '../types/index.js'; export declare const useContentStorage: () => { storage: import("vue").Ref; findContentItem: (path: string) => Promise; updateContentItem: (previewToken: string, file: PreviewFile) => void; removeContentItem: (previewToken: string, path: string) => Promise; removeAllContentItems: (previewToken: string) => Promise; setPreviewMetaItems: (previewToken: string, files: PreviewFile[]) => Promise; };