import { KeyDeriverApi, WalletInterface } from '@bsv/sdk';
export declare function createWalletPaymentOutput(args: {
    toIdentityKey: string;
    fromRootKeyHex: string;
    logResult?: boolean;
}): {
    senderIdentityKey: string;
    derivationPrefix: string;
    derivationSuffix: string;
    lockingScript: string;
};
export declare function createWalletPaymentAction(args: {
    toIdentityKey: string;
    outputSatoshis: number;
    keyDeriver: KeyDeriverApi;
    wallet: WalletInterface;
    logResult?: boolean;
}): Promise<{
    senderIdentityKey: string;
    vout: number;
    txid: string;
    derivationPrefix: string;
    derivationSuffix: string;
    atomicBEEF: string;
}>;
//# sourceMappingURL=walletLive.man.test.d.ts.map