import type { RxCollection, ReplicationPullOptions, ReplicationPushOptions } from '../../types/index.d.ts'; import { RxReplicationState } from '../replication/index.ts'; import type { NatsCheckpointType, NatsSyncOptions } from './nats-types.ts'; export * from './nats-types.ts'; export * from './nats-helper.ts'; export declare class RxNatsReplicationState extends RxReplicationState { readonly replicationIdentifier: string; readonly collection: RxCollection; readonly pull?: ReplicationPullOptions | undefined; readonly push?: ReplicationPushOptions | undefined; readonly live: boolean; retryTime: number; autoStart: boolean; constructor(replicationIdentifier: string, collection: RxCollection, pull?: ReplicationPullOptions | undefined, push?: ReplicationPushOptions | undefined, live?: boolean, retryTime?: number, autoStart?: boolean); } export declare function replicateNats(options: NatsSyncOptions): RxNatsReplicationState;