/** * * DTO providing status information about an ongoing or configured database replication. * / */ export declare class ReplicationInfo { /** * * Whether the replication is currently active. */ active: boolean; /** * * Whether the replication process is currently running. */ running: boolean; /** * * The number of pending changes to replicate from the source. */ pendingFrom: number | undefined; /** * * The number of pending changes to replicate to the target. */ pendingTo: number | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): ReplicationInfo; }