import type { MutatorDefs } from "replicache"; import type Express from "express"; export interface ReplicacheServerOptions { mutators: MutatorDefs; port: number; host: string; } export declare class ReplicacheExpressServer { mutators?: MutatorDefs; port: number; host: string; options: ReplicacheServerOptions; private _app?; constructor(options: ReplicacheServerOptions); get app(): Express.Application; static app(options: ReplicacheServerOptions): Express.Application; start(callback: () => void): ReplicacheExpressServer; static start(options: ReplicacheServerOptions, callback: () => void): ReplicacheExpressServer; }