import { BitOrder } from "../constants"; /** * Converts a byte to a string with 8 * characters of 0 or 1 * * @export * @param {number} byte * @returns {string} */ export declare function ByteToBitString(byte: number, order?: BitOrder): string;