/// import * as web3 from '@solarti/web3.js'; import * as beet from '@miraplex/beet'; import * as beetMiraland from '@miraplex/beet-miraland'; import { Key } from '../types/Key'; export type CollectionAuthorityRecordArgs = { key: Key; bump: number; updateAuthority: beet.COption; }; export declare class CollectionAuthorityRecord implements CollectionAuthorityRecordArgs { readonly key: Key; readonly bump: number; readonly updateAuthority: beet.COption; private constructor(); static fromArgs(args: CollectionAuthorityRecordArgs): CollectionAuthorityRecord; static fromAccountInfo(accountInfo: web3.AccountInfo, offset?: number): [CollectionAuthorityRecord, number]; static fromAccountAddress(connection: web3.Connection, address: web3.PublicKey, commitmentOrConfig?: web3.Commitment | web3.GetAccountInfoConfig): Promise; static gpaBuilder(programId?: web3.PublicKey): beetMiraland.GpaBuilder; static deserialize(buf: Buffer, offset?: number): [CollectionAuthorityRecord, number]; serialize(): [Buffer, number]; static byteSize(args: CollectionAuthorityRecordArgs): number; static getMinimumBalanceForRentExemption(args: CollectionAuthorityRecordArgs, connection: web3.Connection, commitment?: web3.Commitment): Promise; pretty(): { key: string; bump: number; updateAuthority: web3.PublicKey; }; } export declare const collectionAuthorityRecordBeet: beet.FixableBeetStruct;