export interface StreamPatch { description?: string; metadata?: { [key: string]: string; }; uid?: string | null; } export declare const StreamPatchSerializer: { _fromJsonObject(object: any): StreamPatch; _toJsonObject(self: StreamPatch): any; };