import type { Address, GetContractReturnType } from "viem"; import { PythAbi } from "./pyth-abi.js"; import type { SuperWalletClient } from "./super-wallet.js"; export type PythContract = GetContractReturnType; export declare const createPythContract: (client: SuperWalletClient, address: Address) => PythContract;