declare const createHandler: ({ static: _static }?: Configuration) => import("express-serve-static-core").Router; export interface Configuration { static?: boolean; } export default createHandler;