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