export declare function stringToBytes(string: string): number[]; /** Checks whether the TAR checksum is valid. @param {Buffer} buffer - The TAR header `[offset ... offset + 512]`. @param {number} offset - TAR header offset. @returns {boolean} `true` if the TAR checksum is valid, otherwise `false`. */ export declare function tarHeaderChecksumMatches(buffer: any, offset?: number): boolean; /** ID3 UINT32 sync-safe tokenizer token. 28 bits (representing up to 256MB) integer, the msb is 0 to avoid "false syncsignals". */ export declare const uint32SyncSafeToken: { get: (buffer: any, offset: number) => number; len: number; }; //# sourceMappingURL=util.d.ts.map