import { ExpandedKey } from "./common";
export declare const encrypt: (key: string | Uint8Array, data: Uint8Array) => Promise<Uint8Array>;
export declare const encryptBlock: (key: ExpandedKey, blk: Uint8Array) => Uint8Array;
