import { PublicKey } from "@solana/web3.js"; import { Asset } from "./constants"; import { Network } from "./network"; export declare function isValidType(asset: Asset): boolean; export declare function isValidStr(asset: string): boolean; export declare function allAssets(network?: Network): Asset[]; export declare function assetToName(asset: Asset): string | null; export declare function nameToAsset(name: string): Asset; export declare function getAssetMint(asset: Asset): PublicKey; export declare function toProgramAsset(asset: Asset): any; export declare function fromProgramAsset(asset: any): Asset; export declare function assetToIndex(asset: Asset): number; export declare function indexToAsset(index: number): Asset; export declare function assetMultiplier(asset: Asset): number;