import { Context, Schema, Logger } from 'koishi';
export declare const name = "ohayo";
export interface Config {
}
export declare const logger: Logger;
export declare const Config: Schema<Config>;
/**
 * ohayo插件主体
 * @param ctx
 * @param config 配置参数
 */
export declare function apply(ctx: Context, config: Config): void;
