export declare const shortAddress: (loginAdress: string) => string; export interface TMessageInfo { address: string; title: string; message: string; } export declare const createMessage: (params: TMessageInfo) => { msg: string; timestamp: number; } | undefined; export declare const getChainType: (loginType: string) => "tron" | "evm";