import { Context, Schema } from 'koishi';
export declare const name = "soup";
export interface Config {
    SoupReplyquote: boolean;
}
export declare const Config: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;
