import { DomainCommand } from './domain-command'; export declare namespace serverCommands { class InputHeartbeat implements DomainCommand { static readonly tag: string; readonly __discriminator__ = "domainCommand"; constructor(timestamp: number); readonly tag: string; readonly timestamp: number; } }