import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit";
export interface CloseProgramAccountAccounts {
    adminAuthority: TransactionSigner;
    program: Address;
    programData: Address;
    closingAccount: Address;
    systemProgram: Address;
}
export declare function closeProgramAccount(accounts: CloseProgramAccountAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=closeProgramAccount.d.ts.map