import { About, EvmChain, IcrcAccount, OneSecForwarding, StepStatus, Token } from '../../../types';
import { BaseStep } from '../../baseStep';
import { ComputeForwardingAddressStep } from './computeForwardingAddressStep';
export declare class NotifyForwardingPaymentStep extends BaseStep {
    private onesec;
    private token;
    private evmChain;
    private icpAccount;
    private computeForwardingAddressStep;
    constructor(onesec: OneSecForwarding, token: Token, evmChain: EvmChain, icpAccount: IcrcAccount, computeForwardingAddressStep: ComputeForwardingAddressStep);
    about(): About;
    expectedDurationMs(): number;
    run(): Promise<StepStatus>;
}
