import { Context, Schema } from 'koishi';
export declare const name = "censure";
export interface Config {
    censor: boolean;
}
export declare const Config: Schema<Config>;
export declare const inject: {
    optional: string[];
};
export declare function apply(ctx: Context, cfg: Config): void;
