interface Options { dir: string; host: string; port: number; } /** * Start a static file server with given options. * @param options Options */ export default function (options: Options): void; export {};