import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit";
export interface DeletePositionBundleAccounts {
    positionBundle: Address;
    positionBundleMint: Address;
    positionBundleTokenAccount: Address;
    positionBundleOwner: TransactionSigner;
    receiver: Address;
    tokenProgram: Address;
}
export declare function deletePositionBundle(accounts: DeletePositionBundleAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=deletePositionBundle.d.ts.map