import { BackendIdMismatchError, ServerAheadError, UnknownError } from '@livestore/common'; import { type CfTypes } from '@livestore/common-cf'; import { Effect, Schema } from '@livestore/utils/effect'; import { SyncMessage } from '../../common/mod.ts'; import { type Env, type ForwardedHeaders, type MakeDurableObjectClassOptions, type StoreId } from '../shared.ts'; import { DoCtx } from './layer.ts'; export declare const makePush: ({ payload, headers, options, storeId, ctx, env, }: { payload: Schema.JsonValue | undefined; headers: ForwardedHeaders | undefined; options: MakeDurableObjectClassOptions | undefined; storeId: StoreId; ctx: CfTypes.DurableObjectState; env: Env; }) => (pushRequest: Omit) => Effect.Effect<{}, UnknownError | BackendIdMismatchError | ServerAheadError, DoCtx>; //# sourceMappingURL=push.d.ts.map