interface GetPythFeedAddressParams { shard: number; priceFeed: number[]; } /** * Retrieves the address of the Pyth feed for a specific shard and price feed. * * @param params - An object containing the following properties: * - `shard`: The shard number associated with the Pyth feed. * - `priceFeed`: An array representing the price feed data. * @returns A promise that resolves to the Pyth feed address. */ export declare const getPythFeedAddress: ({ shard, priceFeed, }: GetPythFeedAddressParams) => Promise>; export {};