import * as web3 from '@solana/web3.js'; import { ExternalPriceAccount } from '../accounts/ExternalPriceAccount'; export declare type UpdateExternalPriceAccountInstructionArgs = { externalPriceAccount: ExternalPriceAccount; }; export declare type UpdateExternalPriceAccountInstructionAccounts = { externalPriceAccount: web3.PublicKey; }; export declare function createUpdateExternalPriceAccountInstruction(accounts: UpdateExternalPriceAccountInstructionAccounts, args: UpdateExternalPriceAccountInstructionArgs): web3.TransactionInstruction;