import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
import { IStyleSheetProcessor } from '../interfaces';
export interface IPostCSSHandlerProps {
    ctx: Context;
    module: Module;
    options: IStyleSheetProps;
}
export declare function stylusHandler(props: IPostCSSHandlerProps): IStyleSheetProcessor;
