import { IStyleSheetProps } from '../config/IStylesheetProps';
import { Context } from '../core/Context';
import { Module } from '../core/Module';
export interface ICSSHandleResourcesProps {
    options: IStyleSheetProps;
    ctx: Context;
    module: Module;
    url?: string;
    fileRoot?: string;
}
export declare function cssHandleResources(opts: {
    path: string;
    contents: string;
}, props: ICSSHandleResourcesProps): {
    file: string;
    contents: string;
};
