import { UserInfoState } from '../../context/UserContext'; interface TipEverpayProps { toAccount: string; tokenType: string; amount: number; userInfoState: UserInfoState; } export interface EverpayBalance { symbol: string; balance: number; decimals: number; tag: string; } export declare function removeEverpayInstance(): void; export declare function tip(props: TipEverpayProps): Promise; export declare function loadUserBalance(userInfoState: UserInfoState): Promise; export {};