/** * AIT file format constants. */ /** Magic bytes identifying AIT files ("AITBUNDL") */ export declare const MAGIC: Uint8Array; export declare const MAGIC_STRING = "AITBUNDL"; export declare const MAGIC_SIZE = 8; /** Current format version */ export declare const FORMAT_VERSION = 1; /** Header sizes (in bytes) */ export declare const VERSION_SIZE = 4; export declare const LENGTH_SIZE = 8; export declare const HEADER_SIZE: number; //# sourceMappingURL=constants.d.ts.map