/// export * from "./$types.js"; import { Buffer } from "buffer"; import { $Buffer } from "./$types.js"; export declare class BBuffer extends Buffer implements $Buffer { static from(arrayBuffer: ArrayBuffer | SharedArrayBuffer, byteOffset?: number, length?: number): BBuffer; static from(data: any[] | Uint8Array): BBuffer; static from(str: string, encoding?: string): BBuffer; static alloc(size: number, fill?: string | Buffer | number, encoding?: string): BBuffer; static allocUnsafe(size: number): BBuffer; static allocUnsafeSlow(size: number): BBuffer; }