import { Asset } from "@iov/asset-directory"; import { Resource } from "../proto/iov/starname/v1beta1/types"; import { StarnameClient } from "../starnameClient"; export interface AssetResource { readonly id: string; readonly address: string; readonly asset: Asset; } export declare const getPreferredAsset: (resources: ReadonlyArray | null) => string; export declare const getTargetsFromResources: (starnameClient: StarnameClient, resources: ReadonlyArray | null) => ReadonlyArray;