import { type Address, type ProgramDerivedAddress } from "@solana/kit"; /** * Metaplex Token Metadata program ID. Codama can't derive PDAs that depend on * an external program, so we keep this helper hand-written. */ export declare const METAPLEX_METADATA_PROGRAM_ADDRESS: Address<"metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s">; /** * Derives the LP metadata PDA owned by the Metaplex Token Metadata program for * a given Voltr vault. Mirrors the legacy SDK's `findLpMetadataAccount(vault)` * convenience: caller supplies the vault, we compute the LP mint PDA and then * the metadata PDA off of it. */ export declare function findLpMetadataPda(seeds: { vault: Address; }, config?: { voltrProgramAddress?: Address; }): Promise; //# sourceMappingURL=metadataPda.d.ts.map