import { Api } from './api'; import * as auth from './auth'; import * as broadcast from './broadcast'; import * as formatter from './formatter'; import * as memo from './memo'; import * as operations from './operations'; import * as utils from './utils'; import { Buffer as BufferPolyfill } from 'buffer'; declare const steem: { version: string; config: { set: (options: Record) => void; get: (key: string) => unknown; getBoolean: (key: string) => boolean; getNumber: (key: string) => number; getString: (key: string) => string; all: () => { [key: string]: unknown; }; }; sha256: (data: string | Buffer) => Buffer; ripemd160: (data: string | Buffer) => Buffer; doubleSha256: (data: string | Buffer) => Buffer; hmacSha256: (key: string | Buffer, data: string | Buffer) => Buffer; generateKeyPair: () => auth.KeyPair; sign: (message: string | Buffer, privateKey: string) => string; verify: (message: string | Buffer, signature: string, publicKey: string) => boolean; api: Api; Api: typeof Api; auth: typeof auth; broadcast: typeof broadcast; formatter: typeof formatter; memo: typeof memo; operations: typeof operations; utils: typeof utils; }; export default steem;