import { DecryptedContent } from '../../types'; export declare const decryptContent: ({ content, encryptionPublicKey, fioContentType, privateKey, }: { content: string; encryptionPublicKey: string; fioContentType: string; privateKey: string; }) => DecryptedContent;