export interface StreamEventTypePatch { archived?: boolean; deprecated?: boolean; description?: string | null; featureFlags?: string[] | null; name?: string | null; } export declare const StreamEventTypePatchSerializer: { _fromJsonObject(object: any): StreamEventTypePatch; _toJsonObject(self: StreamEventTypePatch): any; };