// eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-nocheck import { type CustomAtRules, type TransformOptions } from 'lightningcss'; import type { LoaderContext } from 'webpack'; export interface LightningCssLoaderOption extends Omit, 'filename' | 'code' | 'inputSourceMap' | 'cssModules'> { rem?: boolean; } export default function LightningCssLoader(this: LoaderContext, source: string, prevMap?: string): Promise;