export declare enum CheckAlgorithm { Crc08 = "Crc08", Crc16 = "Crc16", Crc24 = "Crc24", Crc32 = "Crc32", Sha1 = "Sha1" } export declare type CheckAlgorithmImplementation = (bytes: number[]) => number[]; export declare type MinMaxRange = { max: number; min: number; }; export declare type TestCaseInOut = { in: string; out: string; };