import { Any } from "@keplr-wallet/proto-types/google/protobuf/any"; export declare class UnknownMessage implements Any { /** Any type_url. */ protected readonly _typeUrl: string; /** Any value. */ protected readonly _value: Uint8Array; constructor( /** Any type_url. */ _typeUrl: string, /** Any value. */ _value: Uint8Array); get typeUrl(): string; get value(): Uint8Array; toJSON(): { typeUrl: string; value: string; }; }