import { Response } from '../utils/response';
export declare function voteOnPost(params: {
    author: string;
    permlink: string;
    weight: number;
}): Promise<Response>;
export declare function sendToken(params: {
    to: string;
    amount: number;
    currency: string;
    memo?: string;
}): Promise<Response>;
