import { AssetSendRequest, RequestStatus } from '../types';
export declare class TokenSendRequestAction {
    private readonly sendRequest;
    constructor(sendRequest: AssetSendRequest);
    get actionUrl(): string;
    get status(): RequestStatus;
    get token(): string;
    get amount(): string;
    get sender(): string | undefined;
    get receiver(): string | undefined;
    get transactionHash(): string | undefined;
    present(): Promise<TokenSendRequestAction>;
    awaitResult(): Promise<TokenSendRequestAction>;
}
