import type { PluginOptions, Preprocessor } from '@wyw-in-js/transform';
import type { RawLoaderDefinitionFunction } from 'webpack';
export type LinariaLoaderOptions = {
    fastCheck?: boolean;
    preprocessor?: Preprocessor;
    sourceMap?: boolean;
} & Partial<PluginOptions>;
type LoaderType = RawLoaderDefinitionFunction<LinariaLoaderOptions & {
    name: string;
}>;
declare const webpackTransformLoader: LoaderType;
export default webpackTransformLoader;
