export type VerifyMessageReturnType = { isVerified: boolean; message: string; address: string; }; export declare function verifyMessage(signedMessage: string): Promise;