export interface ProtobufAny { "@type": string; value: any; setValue(value: any): void; } export declare class Int32Any implements ProtobufAny { "@type": string; value: number; constructor(value?: number); setValue(value: number): void; } export declare class Int64Any implements ProtobufAny { "@type": string; value: number; constructor(value?: number); setValue(value: number): void; } export declare class BoolAny implements ProtobufAny { "@type": string; value: boolean; constructor(value?: boolean); setValue(value: boolean): void; } export declare class StringAny implements ProtobufAny { "@type": string; value: string; constructor(value?: string); setValue(value: string): void; }