/// /** @module converter */ export * from './ascii'; export * from './trits'; export declare const bytesToTrits: (bytes: Buffer) => Int8Array; export declare const tritsToBytes: (trits: Int8Array) => Buffer;