export interface ServerOptions { name?: string; port?: number; ip?: string; cors?: boolean; dateformat?: string; verbose?: boolean; key?: string; cert?: string; workers?: number; maxAge?: number; behindProxy?: boolean; rootPath: string; index?: { url: string | Array; path: string; }; assets?: { url: string; path: string; }; favicon?: { url: string; path: string; }; } export declare const DEFAULT_OPTIONS: ServerOptions;