import { Bool, Bytes, Int, SupportedParamType } from './scryptTypes';
/**
 * int to little-endian signed magnitude
 */
export declare function int2hex(n: Int): string;
export declare function bool2hex(b: Bool): string;
export declare function bytes2hex(b: Bytes): string;
export declare function toScriptHex(x: SupportedParamType, type: string): string;
export declare function toScriptASM(a: SupportedParamType, type: string): string;
