import { Context, Schema } from 'koishi';
export interface Config {
    pythonPath: string;
    replayMessages: string[];
}
export declare const Config: Schema<Config>;
export declare const name = "koishi-plugin-wowsreplay-to-video";
export declare const inject: {
    required: string[];
};
export declare function apply(ctx: Context, config: Config): void;
