/*! Copyright 2025 the gnablib contributors MPL-1.1 */
export interface IWriter {
    write(data: Uint8Array): void;
}
