/// import { PublicKey } from '@airgap/module-kit'; export declare type SubstrateAccountId = string | PublicKey | T; export interface SubstrateAddress { compare(other: SubstrateAccountId): number; getBufferBytes(): Buffer; getHexBytes(): string; asString(): string; } export declare function isSubstrateAddress(object: unknown): object is SubstrateAddress;