import { Cypher } from "../types"; import { KeySource } from "./keysource"; export declare namespace AESCypher { type Options = { nonce?: () => Buffer; keySource?: KeySource; }; function create(options?: Options): Cypher; } //# sourceMappingURL=cypher.d.ts.map