import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface CloseProgramAccountAccounts {
    adminAuthority: PublicKey;
    program: PublicKey;
    programData: PublicKey;
    closingAccount: PublicKey;
    systemProgram: PublicKey;
}
export declare function closeProgramAccount(accounts: CloseProgramAccountAccounts): TransactionInstruction;
