/**
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md.
*/
type GetStylesLoaderOptions = {
	minify?: boolean;
	sourceMap?: boolean;
	extractToSeparateFile?: boolean;
};
type StylesLoader = {
	test: RegExp;
	use: Array<LoaderToUse>;
};
type LoaderToUse = string | {
	loader: string;
	options?: {
		injectType?: string;
		attributes?: {
			"data-cke": boolean;
		};
		importLoaders?: number;
		sourceMap?: boolean;
		lightningCssOptions?: object;
	};
};
export default function getStylesLoader(options: GetStylesLoaderOptions): StylesLoader;
