import type { LoaderContext } from 'webpack'; interface Options { noDescription?: boolean; noEmptyNodes?: boolean; noLoc?: boolean; replaceKinds?: boolean; esModule?: boolean; importHelpers?: boolean; } export default function graphqlLoader(this: LoaderContext, source: string): string; export {};