import { isly } from "isly"; import { Base64 } from "../../Base64"; export interface Encrypted { key?: string; value: Base64; } export declare namespace Encrypted { const type: import("isly/dist/types/object").IslyObject; const is: (value: Encrypted | any) => value is Encrypted; const flaw: (value: Encrypted | any) => isly.Flaw; function stringify(encrypted: Encrypted): string; function parse(encryptedString: string): Encrypted | undefined; }