import MarkdownIt from 'markdown-it'; export declare const encryptContent: (content: string, password: string | string[]) => { token: string; encryptText: string; }; export declare const handleEncrypt: (content: string, token: string, isHash: boolean) => { token: string; encryptText: string; }; export declare const decryptContent: (encrypted: string, password: string | string[]) => string; export declare const handleDecrypt: (content: string, token: string, isHash: boolean) => string; export declare const encryptFrontmatter: (content: string, mdRender: MarkdownIt, password: string | string[], filePath?: string) => string; export declare const decryptFrontmatter: (content: string, password: string | string[]) => string;