import type { IStellarNetwork } from './types'; export declare function isStellarAddress(address: string): boolean; export declare function getExplorerLink({ id, type, network, }: { id: string; type?: 'contract' | 'account' | 'tx'; network?: IStellarNetwork; }): string; export declare function assertNotStellar(address: string, operation: string): void; export declare const StellarUtils: { isStellarAddress: typeof isStellarAddress; getExplorerLink: typeof getExplorerLink; assertNotStellar: typeof assertNotStellar; };