import { Context } from '@metaplex-foundation/umi'; import { approveCollectionPluginAuthorityV1, PluginType } from '../../generated'; import { PluginAuthority } from '../../plugins'; export type ApproveCollectionPluginAuthorityArgs = Omit[1], 'pluginType' | 'newAuthority'> & { plugin: { type: keyof typeof PluginType; }; newAuthority: PluginAuthority; }; export declare const approveCollectionPluginAuthority: (context: Pick, { plugin, newAuthority, ...args }: ApproveCollectionPluginAuthorityArgs) => import("@metaplex-foundation/umi").TransactionBuilder;