/// import { Server } from "http"; export declare function getMime(filename: string): string; export declare type Options = { port?: number; redirects?: Record; }; export declare function start(root: string, options: Options): Server;