import { isly } from "isly"; import { Aes } from "./Aes"; import { Rsa } from "./Rsa"; export type Encrypted = Aes.Encrypted | Rsa.Encrypted; export declare namespace Encrypted { const type: isly.Type; const is: (value: any | Encrypted) => value is Encrypted; const flaw: (value: Encrypted | any) => isly.Flaw; }