import { PublicKey } from "@solana/web3.js"; /** * Finds the address of the Pool. * @returns */ export declare const findPoolAddress: ({ programId, primaryMint, }: { programId?: PublicKey | undefined; primaryMint: PublicKey; }) => Promise<[PublicKey, number]>; /** * Finds the address of the Pool. * @returns */ export declare const findReplicaMintAddress: ({ programId, primaryMint, }: { programId?: PublicKey | undefined; primaryMint: PublicKey; }) => Promise<[PublicKey, number]>; /** * Finds the address of the Merge Miner. * @returns */ export declare const findMergeMinerAddress: ({ programId, pool, owner, }: { programId?: PublicKey | undefined; pool: PublicKey; owner: PublicKey; }) => Promise<[PublicKey, number]>; //# sourceMappingURL=pda.d.ts.map