import { RxReplicationState } from '../replication/index.ts'; import { SupabaseCheckpoint, SyncOptionsSupabase } from './types.ts'; import { ReplicationPullOptions, ReplicationPushOptions, RxCollection } from '../../types/index'; export declare class RxSupabaseReplicationState 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 replicateSupabase(options: SyncOptionsSupabase): RxSupabaseReplicationState;