import { Message } from "@keplr-wallet/router"; import { ViewAssetToken } from "./types"; export declare class GetAllDisabledViewAssetTokenMsg extends Message>> { static type(): string; constructor(); validateBasic(): void; route(): string; type(): string; } export declare class GetDisabledViewAssetTokenListMsg extends Message> { readonly vaultId: string; static type(): string; constructor(vaultId: string); validateBasic(): void; route(): string; type(): string; } export declare class DisableViewAssetTokenMsg extends Message>> { readonly vaultId: string; readonly token: ViewAssetToken; static type(): string; constructor(vaultId: string, token: ViewAssetToken); validateBasic(): void; route(): string; type(): string; } export declare class EnableViewAssetTokenMsg extends Message>> { readonly vaultId: string; readonly token: ViewAssetToken; static type(): string; constructor(vaultId: string, token: ViewAssetToken); validateBasic(): void; route(): string; type(): string; }