import { PublicKey, TransactionInstruction } from '@solana/web3.js'; export declare const seqEnforcerProgramIds: { devnet: PublicKey; testnet: PublicKey; 'mainnet-beta': PublicKey; }; export declare function makeInitSequenceEnforcerAccountIx(account: PublicKey, ownerPk: PublicKey, bump: number, sym: string, cluster: string): TransactionInstruction; export declare function makeCheckAndSetSequenceNumberIx(sequenceAccount: PublicKey, ownerPk: PublicKey, seqNum: number, cluster: any): TransactionInstruction;