import { Client } from './Client'; export { AppSettings, RouterSettings, ViewSettings, DBSettings } from './Server'; export * from './helper'; export * from './Client'; export * from './Response'; export * from './Event'; export * from './Plugin'; export * from './Command'; export * from './Middleware'; export declare function start(): void; export declare function stop(): void; export declare class log { static error(message: string | Error, client?: Client): Promise; static warn(message: string | Error, client?: Client): Promise; static access(client: Client): Promise; }