/** * * Represents a database synchronization configuration between a source and a target, with optional * filtering. * / */ export declare class DatabaseSynchronization { /** * * The source database URL or identifier. */ source: string | undefined; /** * * The target database URL or identifier. */ target: string | undefined; /** * * A filter expression to apply during synchronization. */ filter: string | undefined; /** * * The local target type for the synchronization (base, healthdata, or patient). */ localTarget: DatabaseSynchronization.Target | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): DatabaseSynchronization; } export declare namespace DatabaseSynchronization { enum Target { Base = "Base", Healthdata = "Healthdata", Patient = "Patient" } }