/// <reference types="@coral-xyz/anchor/node_modules/@solana/web3.js" />
import { type ConfirmOptions, type Connection } from "@solana/web3.js";
export type Config = {
    connection: Connection;
    rpcUrl: string;
    confirmationOptions: ConfirmOptions;
};
export type AssetInfo = {
    mint: string;
};
