export interface Serializable { serialize(): string; } export interface Deserializable { deserialize(str: string): Serializable; }