import { ISyncWritable } from '../types.js'; /** write a buffer to the stream */ export declare function bytes(writable: ISyncWritable, bytes: Uint8Array): void; /** write a buffer to the stream, but in reverse order */ export declare function bytesReversed(writable: ISyncWritable, bytes: Uint8Array): void; /** write a raw string to the stream (`.charCodeAt` is used to get the codepoints) */ export declare function rawString(writable: ISyncWritable, str: string): void; /** write a utf8-encoded string to the stream */ export declare function utf8String(writable: ISyncWritable, str: string): void; /** write a utf16-encoded string to the stream */ export declare function utf16beString(writable: ISyncWritable, str: string): void; /** write a utf16-encoded string to the stream */ export declare function utf16leString(writable: ISyncWritable, str: string): void; /** write a utf8-encoded string to the stream, with a null terminator */ export declare function cUtf8String(writable: ISyncWritable, str: string): void;