/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; /** * Class OutStream defines a stream of bytes to write to. */ /** @internal */ export declare class OutStream { /** * Create a new stream. */ constructor(); /** * Write the next byte (0.255) (the stream should only look at the lowest 8 bits of the value and ignore all others). */ write(value: int32): void; /** * Close the stream */ close(): void; } export {}; //# sourceMappingURL=OutStream.d.ts.map