import { Context } from "koishi";
import { Config } from "./config";
declare module "koishi" {
interface Events {
"hellomorning/moring-event"(massage: string): void;
}
}
export declare function apply(ctx: Context, config: Config): void;
export * from "./config";