import { Address, TypedMap } from "../common";
/**
 * An URL pointing to an image/png file.
 */
export declare type Icon = string | undefined;
export declare type IconMap<T extends Address> = TypedMap<T, Icon>;
export interface Alias {
    name: string;
    symbol: string;
    address: Address;
}
export declare type AliasMap<T extends Address> = TypedMap<T, Alias>;
export interface AssetServiceState {
    supported: Map<Address, string>;
    aliases: Map<Address, Alias>;
}
