declare function toAny(data: any, type: string): {
    type_url: "application/json" | "text/plain";
    value: Buffer<any>;
};
declare function fromAny(data: {
    type_url: string;
    value: any;
}): any;
export { toAny, fromAny };
