import { ExpressOptions } from '../../common/types.js';
import { SimpleServerConfig } from '../types.js';
declare const create: (config: SimpleServerConfig, options?: {
    express: ExpressOptions;
}) => {
    start: () => Promise<void>;
};
export { create };
