import { Context, Schema } from "koishi";

//#region src/index.d.ts
declare const name = "bilibili-notify-advanced-subscription";
interface Config {
  subs: {};
}
declare const Config: Schema<Config>;
declare function apply(ctx: Context, config: Config): void;
//#endregion
export { Config, apply, name };