import * as beet from '@convergence-rfq/beet'; import * as web3 from '@solana/web3.js'; export declare const registerMintStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; export type RegisterMintInstructionAccounts = { authority: web3.PublicKey; protocol: web3.PublicKey; mintInfo: web3.PublicKey; baseAsset: web3.PublicKey; mint: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const registerMintInstructionDiscriminator: number[]; export declare function createRegisterMintInstruction(accounts: RegisterMintInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;