/// import { Context } from "koishi"; import { baseImage } from "./utils"; import { Style } from "./config"; export interface drawTextOptions extends Style { color: string; } export declare function drawBaseImageList(koishiContext: Context, baseImages: baseImage[]): Promise; export declare function draw(context: Context, baseImages: baseImage[], inputText: string, baseImageId: number): Promise; export declare function drawTextWithoutCurve(koishiContext: Context, text: string, { color, textAlign, textOrientation }: drawTextOptions): Promise; export declare function drawTextWithCurve(koishiContext: Context, text: string, { color, textAlign, }: drawTextOptions): Promise;