import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface SetLockReleaseSlotArgs {
    newLockReleaseSlot: BN;
}
export interface SetLockReleaseSlotAccounts {
    position: PublicKey;
    lbPair: PublicKey;
    sender: PublicKey;
    eventAuthority: PublicKey;
    program: PublicKey;
}
export declare const layout: any;
export declare function setLockReleaseSlot(args: SetLockReleaseSlotArgs, accounts: SetLockReleaseSlotAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=setLockReleaseSlot.d.ts.map