/// import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; import { Key } from '../types/Key'; export declare type ExternalPriceAccountArgs = { key: Key; pricePerShare: beet.bignum; priceMint: web3.PublicKey; allowedToCombine: boolean; }; export declare class ExternalPriceAccount implements ExternalPriceAccountArgs { readonly key: Key; readonly pricePerShare: beet.bignum; readonly priceMint: web3.PublicKey; readonly allowedToCombine: boolean; private constructor(); static fromArgs(args: ExternalPriceAccountArgs): ExternalPriceAccount; static fromAccountInfo(accountInfo: web3.AccountInfo, offset?: number): [ExternalPriceAccount, number]; static fromAccountAddress(connection: web3.Connection, address: web3.PublicKey): Promise; static deserialize(buf: Buffer, offset?: number): [ExternalPriceAccount, number]; serialize(): [Buffer, number]; static get byteSize(): number; static getMinimumBalanceForRentExemption(connection: web3.Connection, commitment?: web3.Commitment): Promise; static hasCorrectByteSize(buf: Buffer, offset?: number): boolean; pretty(): { key: string; pricePerShare: beet.bignum; priceMint: string; allowedToCombine: boolean; }; } export declare const externalPriceAccountBeet: beet.BeetStruct;