import { Base64 } from "../Base64"; import { Encrypter } from "../Encrypter"; export type Encrypters = Record & { current: Encrypter.Aes; }; export declare namespace Encrypters { function create(create: (keys: string[]) => Encrypter.Aes, current: string, ...secrets: Base64[] | Record[]): Encrypters; }