import type { ContentValue } from '../../../types/ContentTypes.js';
export declare const useEditContentStorage: () => {
    loadContent: () => Promise<void>;
    getChanges: (runtimeContent: Record<string, ContentValue>, editContent: Record<string, ContentValue>) => Record<string, ContentValue>;
    updateContentByKey: (key: string, value: ContentValue) => Promise<void>;
    revertChangeByKey: (key: string) => Promise<void>;
    editContent: import("vue").Ref<Record<string, ContentValue>, Record<string, ContentValue>>;
    changes: import("vue").ComputedRef<Record<string, ContentValue>>;
};
