import { Plugin } from "@vuepress/core"; import { type EncryptOptions } from "../shared/encrypt.js"; import { encryptContent, encryptFrontmatter, decryptContent, decryptFrontmatter } from "../client/utils/encrypt.js"; export declare const PLUGIN_NAME = "vuepress-plugin-encrypt"; export declare const ENCRYPT_CONTAINER_BEGIN_REGEX: RegExp; export declare const encryptPlugin: (options: EncryptOptions) => Plugin; export * from "../shared/encrypt.js"; export { encryptContent, encryptFrontmatter, decryptContent, decryptFrontmatter }; export default encryptPlugin;