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