/// import * as protocol from '../types/protocol/any'; export declare type Any = { type_url: string; value: Uint8Array; }; export declare namespace Any { function typeUrl(any?: protocol.AnyOut | null): string; function value(any?: protocol.AnyOut | null): Buffer; function flip(any?: protocol.AnyOut | null): protocol.AnyIn; } export declare type Comparable = string | number | boolean;