import { Context, Schema } from "koishi";
declare module 'koishi' {
    interface Channel {
        yuque: number;
    }
}
declare const using: readonly ["database"];
declare const name = "yuque";
declare const Config$0: Schema<{
    port?: number;
    list?: string[];
} & import("schemastery").Dict<any, string>, {
    port?: number;
    list?: string[];
} & import("schemastery").Dict<any, string>>;
declare function apply(ctx: Context, conf?: Config$0): Promise<void>;
export { using, name, Config$0 as Config, apply };
