import { TSignTypedData } from "../types"; type TCreateMessageEncyptionKey = ({ transferId, signTypedData, chainId, encryptionKeyLength }: { transferId: string; signTypedData: TSignTypedData; chainId: number; encryptionKeyLength: number; }) => Promise<{ encryptionKey: string; encryptionKeyLinkParam: string; }>; declare const createMessageEncyptionKey: TCreateMessageEncyptionKey; export default createMessageEncyptionKey; //# sourceMappingURL=create-message-encryption-key.d.ts.map