import { Connection, PublicKey } from "@solana/web3.js"; export declare function fetchPythPrices(connection: Connection, pythPriceAddresses: PublicKey[]): Promise<{ [pk: string]: number; }>; /** * Convert a 64 bit number to two big endian bytes. That is the format used in * seeds for DIP program accounts. */ export declare function toBeBytes(x: number): Uint8Array; export declare function mintToTokenName(mint: PublicKey): string; export declare const calculateStrikeAtomsPerBaseToken: (data: { isUpside: boolean; baseMint: PublicKey; strike: number; }) => number;