import { EscrowRfq } from '../rfqModule'; import type { Convergence } from '../../Convergence'; import { Pda, PublicKey } from '../../types'; /** * This client allows you to build PDAs related to the Instrument module. * * @see {@link InstrumentClient} * @group Module Pdas */ export declare class InstrumentPdasClient { protected readonly convergence: Convergence; constructor(convergence: Convergence); /** Finds the PDA of a given instrument escrow. */ instrumentEscrow({ response, index, rfqModel }: InstrumentEscrowInput): Pda; /** Finds the PDA of a given quote escrow. */ quoteEscrow({ response, program }: QuoteEscrowInput): Pda; } type InstrumentEscrowInput = { /** The address of the Response account. */ response: PublicKey; /** The leg index. */ index: number; /** The Rfq Model. */ rfqModel: EscrowRfq; }; type QuoteEscrowInput = { /** The address of the Response account. */ response: PublicKey; /** The quote escrow program */ program: PublicKey; }; export {};