interface ZenoSyncServerConfig {
    port: number;
    pg: {
        connectionString: string;
        table: string;
        maxRetries?: number;
        retryInterval?: number;
    };
}
export declare function startSyncServer(config: ZenoSyncServerConfig): void;
export {};
