export declare class BitcoinUtils {
    static btcToSatoshi(btc: number): bigint;
    static rndBytes(): Buffer;
    static getSafeRandomValues(length: number): Buffer;
    static isValidHex(hex: string): boolean;
    static opnetHash(data: Buffer): string;
}
