import { TBinary } from '../types'; export declare function booleanToBytes(input: boolean): Uint8Array; export declare function byteToByteArray(input: number): Uint8Array; export declare function shortToByteArray(input: number): Uint8Array; export declare function integerToByteArray(input: number): Uint8Array; export declare function bytesToByteArrayWithSize(input: TBinary, lengthField?: 'int8' | 'int16' | 'int32'): Uint8Array; export declare function byteArrayWithSizeToBytes(input: Uint8Array, lengthField?: 'int16' | 'int32'): Uint8Array; export declare function longToByteArray(input: number): Uint8Array; export declare function byteArrayToLong(input: Uint8Array): number; export declare function stringToByteArray(input: string): Uint8Array; export declare function stringToByteArrayWithSize(input: string, lengthField?: 'int8' | 'int16' | 'int32'): Uint8Array;