import type { Context } from 'koishi'; import { Schema } from 'koishi'; export interface IConfig { youtubeDataApiKey: string; useImage?: boolean; } export declare const Config: Schema; export declare function apply(ctx: Context, config: IConfig): void;