import { Router } from './router/router';
import { ServerOptions } from './server/server';
interface LottoOptions extends ServerOptions {
    prefix?: string;
}
interface AbstractLotto {
    init: (after?: (...args: unknown[]) => void) => void;
}
export declare class Lotto extends Router implements AbstractLotto {
    private server;
    constructor(options?: LottoOptions);
    init(after?: (...args: unknown[]) => void): void;
}
export {};
