export interface SuggestCW20Token {
    contractAddress: string;
    viewingKey?: string;
    imageURL?: string;
    coinGeckoId?: string;
}
export declare const SuggestTokenTypes: {
    readonly CW20: "cw20";
    readonly ERC20: "erc20";
};
export type SuggestTokenType = (typeof SuggestTokenTypes)[keyof typeof SuggestTokenTypes];
export interface SuggestToken {
    chainId: string;
    chainName: string;
    type: SuggestTokenType;
    tokens: SuggestCW20Token[];
}
