import { CorsOptions } from 'cors';

declare const startServer: ({ logFilePath, corsOptions }: {
    logFilePath: string;
    corsOptions: CorsOptions;
}) => void;

export { startServer };
