import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
import { IStylesheetModuleResponse, IStyleSheetProcessor } from '../interfaces';
interface IRenderModuleProps {
    options?: IStyleSheetProps;
    ctx: Context;
    module: Module;
}
export declare function renderModule(props: IRenderModuleProps): Promise<IStylesheetModuleResponse>;
export interface IPostCSSHandlerProps {
    ctx: Context;
    module: Module;
    options: IStyleSheetProps;
}
export declare function postCSSHandler(props: IPostCSSHandlerProps): IStyleSheetProcessor;
export {};
