import { SendTxRequest } from "@project-serum/anchor/dist/provider"; export declare const breakUpInstrDataArrays: (items: T[], createTxFn: (items: T[]) => SendTxRequest) => SendTxRequest[]; /** * have dummy as a "nonce", otherwise the tx simulator can give that a transaction was already * processed because there may be requests which look the same (imagine 100 actions all with the same output shape * and you do 5 add actions) * * NOTE: this is not cryptographically secure, but is only meant to help differentiate between txs for the frontend */ export declare const getRandomNotCryptoSecureNonce: (min: number, max: number) => number;