import { ICrypt } from './ICrypt'; declare abstract class ACryptImpl implements ICrypt { protected _prefix: string; abstract decrypt(data: string): unknown; abstract encrypt(data: unknown): string; protected constructor(_prefix: string); getType: () => string; getPrefix(): string; getPrefixLength(): number; } export default ACryptImpl;