import { type LoaderContext } from 'webpack'; import { type TwingEnvironment } from 'twing'; export type TwingLoaderOptions = { environment: TwingEnvironment; }; export default function (this: LoaderContext, code: string): void;