import { Keypair, TransactionInstruction } from '@solana/web3.js'; import { BaseConfig, BaseConfigParams } from '../base'; export interface ProgramConfigParams extends Omit { instructions: TransactionInstruction[]; signers: Keypair[]; rentReserve?: bigint; } export declare class ProgramConfig extends BaseConfig { readonly instructions: TransactionInstruction[]; readonly signers: Keypair[]; readonly rentReserve: bigint; constructor({ instructions, signers, rentReserve, ...other }: ProgramConfigParams); }