import { Context, Schema } from 'koishi'; export declare const name = "tmp-bot"; export declare const inject: { required: string[]; optional: string[]; }; export interface Config { baiduTranslateEnable: boolean; baiduTranslateAppId: string; baiduTranslateKey: string; baiduTranslateCacheEnable: boolean; tmpTrafficType: number; } export declare const Config: Schema; export declare function apply(ctx: Context, cfg: Config): void;