import { SignedTransaction } from './SignedTransaction';
export declare class TransferTokens extends SignedTransaction {
    ENDPOINT: string;
    ACTION: string;
    ACCOUNT: string;
    payeePublicKey: string;
    amount: string;
    maxFee: number;
    technologyProviderId: string;
    constructor(payeePublicKey: string, amount: number, maxFee: number, technologyProviderId?: string);
    prepareResponse(result: any): any;
    getData(): Promise<{
        payee_public_key: string;
        amount: string;
        max_fee: number;
        tpid: string;
        actor: string;
    }>;
}
