import type { NextApiRequest, NextApiResponse } from "next"; import type { MutatorDefs } from "replicache"; export declare function spaceExists(spaceID: string): Promise; export declare function createSpace(spaceID: string): Promise; export declare function handleRequest(req: NextApiRequest, res: NextApiResponse, mutators: M): Promise;