import { Context, Schema } from 'koishi'; export declare const name = "cannonballer-main"; export interface Config { imgBackend: string; mongo: string; } export declare const Config: Schema; export declare function apply(ctx: Context, config: Config): Promise;