import { PROTOCOL } from '../config/types';
/**
 * TODO
 * @param {number} addressIndex
 * @param {*} transaction
 */
declare const getScriptAndArguments: (transaction: object, transfer: {
    script: string;
    signature: string;
}, protocol: PROTOCOL) => Promise<{
    script: string;
    argument: string;
}>;
export { getScriptAndArguments };
