import { TBinaryIn } from './interface'; export declare const verifyAddress: (addr: TBinaryIn, optional?: { chainId?: string | number | undefined; publicKey?: string | number[] | Uint8Array | undefined; } | undefined) => boolean; export declare const verifySignature: (publicKey: TBinaryIn, bytes: TBinaryIn, signature: TBinaryIn) => boolean; export declare const verifyPublicKey: (publicKey: TBinaryIn) => boolean;