/**
 * 1.44f converted from C style float
 */
export declare const DANAE_VERSION = 1.440000057220459;
export declare const LITTLE_ENDIAN = true;
export declare const BIG_ENDIAN = false;
export declare const TRUNCATE_ZERO_BYTES = "truncate zero bytes";
export declare const KEEP_ZERO_BYTES = "keep zero bytes";
export declare const MAP_WIDTH_IN_CELLS = 160;
export declare const MAP_DEPTH_IN_CELLS = 160;
/**
 * ASCII / ISO 8859-1 characters
 *
 * @see https://cs.stanford.edu/people/miles/iso8859.html
 * @see https://mathiasbynens.be/notes/javascript-escapes
 */
export declare const CHARS: readonly string[];
export declare const CODES: Record<string, number>;
export declare const BYTE_OF_AN_UNKNOWN_CHAR: number;
export declare const CHAR_OF_AN_UNKNOWN_BYTE = " ";
