declare class ServerStarted { private _timestamp; private _additionalProperties?; constructor(input: { timestamp: string; }); get timestamp(): string; set timestamp(timestamp: string); get additionalProperties(): Map | boolean | null> | undefined; set additionalProperties(additionalProperties: Map | boolean | null> | undefined); marshal(): string; static unmarshal(json: string | object): ServerStarted; } export default ServerStarted;