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