import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
import { IStyleSheetProcessor } from '../interfaces';
export interface ILessHandlerProps {
    ctx: Context;
    module: Module;
    options: IStyleSheetProps;
}
export declare function renderModule(props: {
    ctx: Context;
    module: Module;
    less: any;
    options: IStyleSheetProps;
}): Promise<{
    map: string;
    css: string;
}>;
export declare function lessHandler(props: ILessHandlerProps): IStyleSheetProcessor;
