import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
export interface ICSSPluginProps {
    stylesheet?: IStyleSheetProps;
    asText?: boolean;
}
export declare function pluginCSS(a?: ICSSPluginProps | string | RegExp, b?: ICSSPluginProps): (ctx: Context) => void;
