import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
export declare type IPluginRawProps = {
    useDefault?: boolean;
};
export declare function pluginRawHandler(props: {
    ctx: Context;
    module: Module;
    opts: IPluginRawProps;
}): void;
export declare function pluginRaw(a?: IPluginRawProps | string | RegExp, b?: IPluginRawProps): (ctx: Context) => void;
