/// interface AnyExtension { /** * The fully qualified name of the message type that this object represents, * possibly including a URL prefix. */ '@type': string; } export declare type Any = AnyExtension | { type_url: string; value: Buffer | Uint8Array | string; }; export declare type Any__Output = AnyExtension | { type_url: string; value: Buffer; }; export {};