import { PublicKey } from '@metaplex-foundation/umi'; import { BaseUpdateAuthority } from '../generated'; export type UpdateAuthorityType = BaseUpdateAuthority['__kind']; export type UpdateAuthority = { type: UpdateAuthorityType; address?: PublicKey; }; export declare function updateAuthorityToBase(u: UpdateAuthority): BaseUpdateAuthority;