import { Server } from "http"; import { CrudityOptions } from "./interfaces/CrudityOptions"; import { CrudityRouter } from "./interfaces/CrudityRouter"; import { Idable } from "./interfaces/Idable"; export declare const crudity: (server: Server, resourceName: string, opts?: Partial) => CrudityRouter;