import { IStyleSheetProps } from '../config/IStylesheetProps';
export interface ICSSAutoImportProps {
    stylesheet: IStyleSheetProps;
    contents: string;
    url: string;
}
export declare function cssAutoImport(props: ICSSAutoImportProps): string;
