/*! Copyright 2023 the gnablib contributors MPL-1.1 */
export interface IEncoder {
    fromBytes(bytes: Uint8Array): string;
    toBytes(enc: string): Uint8Array;
}
