import { Beef, Transaction } from '@bsv/sdk'; import { TableTransaction } from '../storage/schema/tables'; import { StorageAdminStats, StorageProvider } from '../storage/StorageProvider'; export declare abstract class Format { static alignLeft(v: string | number, fixedWidth: number): string; static alignRight(v: string | number, fixedWidth: number): string; static alignMiddle(v: string | number, fixedWidth: number): string; static satoshis(s: number): string; static toLogStringTransaction(tx: Transaction): string; static toLogStringBeefTxid(beef: Beef, txid: string): string; static toLogStringTableTransaction(tx: TableTransaction, storage: StorageProvider): Promise; static toLogStringAdminStats(s: StorageAdminStats): string; } //# sourceMappingURL=Format.d.ts.map