import type Express from "express"; import type { MutatorDefs } from "replicache"; export declare function spaceExists(spaceID: string): Promise; export declare function createSpace(spaceID: string): Promise; export declare function handleRequest(req: Express.Request, res: Express.Response, next: Express.NextFunction, mutators: M): Promise;